I learned from somewhere a detached screen can be killed by
screen -X -S [session # you want to kill] kill
where [session # you want to kill] can be gotten from
screen -ls .
But this doesn't work. Anything wrong? What's the correct way?
|
I learned from somewhere a detached screen can be killed by
where [session # you want to kill] can be gotten from
But this doesn't work. Anything wrong? What's the correct way? |
|||||||||
|
|
"kill" will only kill one screen window. To "kill" the complete session, use |
|||||
|
|
You can kill a detached session which is not responding within the screen session by doing the following.
|
||||
|
It's easier to kill a session, when some meaningful name is given:
|
|||
|
|
|
List screens:
Output:
Kill screen session:
|
|||||||||
|
|
Or you can just go to the place where the screen session is housed, example:
Results in
And just remove it; example (numbered in steps so don't put the numbers):
(the uscreens directory will not have the not to make sure just type this: screen -ls and you will get this: No Sockets found in /tmp/uscreens/S-xxx. |
||||
|
|
|
|||
|
Alternatively, while in your screen session all you have to do is type exit This will kill the shell session initiated by the screen, which effectively terminates the screen session you are on. No need to bother with screen session id, etc. |
|||
|
|
|
To kill all detached screen sessions, include this function in your .bash_profile:
to run it, call |
|||
|
|
add this to your ~/.bashrc:
and then use cleanscreen to clean all screen session. |
|||
|
|
Should clean all screen sessions |
||||
|
|
|
I usually just use "screen -d [session #]" to get rid of a detached screen. After that you can resume your session "screen -r" |
|||||
|