No Sockets found in /var/run/screen/S-root. when using `screen`

2

I want to screen on a machine with fedora the result is:

   [root@kitch udp]# screen -ls
    No Sockets found in /var/run/screen/S-root.

    [root@kitch udp]# screen -ls listen_for_exception
    No Sockets found in /var/run/screen/S-root.

how to deal with this? thanks

misteryes

Posted 2013-04-30T20:18:53.177

Reputation: 2 255

Answers

4

Don't use -ls. -ls tells screen to print out a list of open screen sesstions, and then quit. It's complaining about "No sockets" because you do not have any screen sessions running. Try:

screen -S listen_for_exception

Darth Android

Posted 2013-04-30T20:18:53.177

Reputation: 35 133