Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
I think you have more luck on superuser.com – Toad Oct 2 '09 at 14:08
6  
"somewhere" is not always a good source of information. Try "man screen". – innaM Oct 2 '09 at 14:08

12 Answers

up vote 63 down vote accepted

"kill" will only kill one screen window. To "kill" the complete session, use quit.

share|improve this answer
5  
type 'exit' (without the quotes) in ubuntu :P – mzalazar Jan 23 at 12:48

You can kill a detached session which is not responding within the screen session by doing the following.

  1. type "screen -list" to identify the (detached) screen session.
    eg: screen -list

    There are screens on:  
         20751.Melvin_Peter_V42  (Detached)  
    

    Note: "20751.Melvin_Peter_V42" is your session id.

  2. get attached to the detached screen session eg: screen -r 20751.Melvin_Peter_V42

  3. Once connected to the session which might or might not respond, do the following. press Ctrl + a (there wont be any changes in your window now) type :quit

  4. Thats its your remote screen session will be terminated now.

share|improve this answer
2  
Thank you for the detailed instruction. It works very well! – Youn Jun 26 '12 at 16:26
That worked perfectly!!! The screen froze while dumping a binary file. – CDR Jan 24 at 6:54

It's easier to kill a session, when some meaningful name is given:

//Creation:
screen -S some_name proc
// Kill detached session
screen -S some_name -X quit
share|improve this answer

List screens:

screen -list

Output:

There is a screen on:
23536.pts-0.wdzee       (10/04/2012 08:40:45 AM)        (Detached)
1 Socket in /var/run/screen/S-root.

Kill screen session:

screen -S 23536 -X quit
share|improve this answer
1  
IMO this answer is the most complete and best written, however it should be just screen -list. I tried editing to correct it, but StackOverflow told me I didn't change enough characters. :/ – cwc Dec 5 '12 at 17:01
1  
@cwc I made the edit you pointed out. Usually, multi-letter options take double-dash --, but screen's options don't. – 13ren Jan 10 at 12:46

Or you can just go to the place where the screen session is housed, example:

 screen -ls

Results in

 There is a screen on:
         26727.pts-0.devxxx      (Attached)
 1 Socket in /tmp/uscreens/S-xxx. <------ this is where the session is.

And just remove it; example (numbered in steps so don't put the numbers):

  1. cd /tmp/uscreens/S-xxx
  2. ls
  3. 26727.pts-0.devxxx
  4. rm 26727.pts-0.devxxx
  5. ls

(the uscreens directory will not have the 26727.pts-0.devxxx file in it anymore)

not to make sure just type this: screen -ls

and you will get this:

No Sockets found in /tmp/uscreens/S-xxx.

share|improve this answer
== ISSUE THIS COMMAND
[xxx@devxxx ~]$ screen -ls


== SCREEN RESPONDS
There are screens on:
        23487.pts-0.devxxx      (Detached)
        26727.pts-0.devxxx      (Attached)
2 Sockets in /tmp/uscreens/S-xxx.


== NOW KILL THE ONE YOU DONT WANT
[xxx@devxxx ~]$ screen -X -S 23487.pts-0.devxxx kill


== WANT PROOF?
[xxx@devxxx ~]$ screen -ls
There is a screen on:
        26727.pts-0.devxxx      (Attached)
1 Socket in /tmp/uscreens/S-xxx.
share|improve this answer
Wouldn't that just remove the socket, not kill the process behind it? – Martin C. Jul 31 '12 at 5:56
Is this method is risky from the point of view of creation of zomby processes ? – Fedir Oct 1 '12 at 13:02

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.

share|improve this answer

For me a simple

exit

works. This is from within the screen session.

share|improve this answer

To kill all detached screen sessions, include this function in your .bash_profile:

killd () {
for session in $(screen -ls | grep -o '[0-9]\{5\}')
do
screen -S "${session}" -X quit;
done
}

to run it, call killd

share|improve this answer
Sometimes it's not 5 digits, so i use: killd () { for session in $(screen -ls | grep -o '[0-9]\+') do screen -S "${session}" -X quit; done } – Kostyantyn yesterday

add this to your ~/.bashrc:

alias cleanscreen="screen -ls | tail -n +2 | head -n -2 | awk '{print $1}'| xargs -I{} screen -S {} -X quit"

and then use cleanscreen to clean all screen session.

share|improve this answer
screen -wipe

Should clean all screen sessions

share|improve this answer
This cleans only dead session sockets. – PaweÅ‚ Nadolski Mar 7 at 13:57

I usually just use "screen -d [session #]" to get rid of a detached screen. After that you can resume your session "screen -r"

share|improve this answer
1  
This will deattach a screen session, not terminate it. – Wipqozn Jun 20 '11 at 13:12

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.