You were just using screen, but now it says
dmb@dallas0 [~]# screen -r
There is no screen to be resumed.
Try this:
ps x | grep -i screen
Note the PID... and:
kill -CHLD screenpid
http://www4.informatik.uni-erlangen.de/~jnweiger/screen-faq.html
1 comment:
you should look at
screen -S irc # run the first time to create the screen session
then you recall by
screen -r irc
Post a Comment