Tell GNU screen where to save the sessions?
From the manual: The “socket directory” defaults either to $HOME/.screen or simply to /tmp/screens or preferably to /var/run/screen chosen at compile-time… By setting … Read more
From the manual: The “socket directory” defaults either to $HOME/.screen or simply to /tmp/screens or preferably to /var/run/screen chosen at compile-time… By setting … Read more
It’s a socket whose address is a filesystem path rather than some form of network address. For example, instead of connecting to an … Read more
For future googlers, I received this mysterious error and realized the path I was providing to sshfs was non-existent. Oops. Fixed it and … Read more
A related topic came up on the tmux-users mailing list: Trying to use socat to tunnel tmux socket Summary: Simply forwarding the in-band, … Read more
The problem is that bind mounts are for exposing something on the host to the container. So when you do this: volumes: – … Read more
It should… a B&M module should work with either a B or M socket, this is by design. The B interface provides x2 … Read more
You are probably re-starting your program too fast, or the program is not closing the socket. Even after the socket is closed, Linux … Read more
I had to do this exact thing today. Powershell can do it with Get-NetTCPConnection. PS C:\WINDOWS\system32> Get-NetTCPConnection -LocalPort 53100 LocalAddress LocalPort RemoteAddress RemotePort … Read more
On both Windows and Unixen, when a process exits the kernel closes all open handles. Windows NT Terminating a Process – MSDN Terminating … Read more
I found the following to be useful watch ‘echo “show stat” | nc -U /var/lib/haproxy/stats | cut -d “,” -f 1,2,5-11,18,24,27,30,36,50,37,56,57,62 | column … Read more