vote up 3 vote down star
1

I've accidentally attached to a 2nd GNU screen session from within an existing screen session and cannot detach or issue commands to the inner screen. I remember figuring out how to do that before but completely forgot and would like to keep it as reference.

One way is to detach the inner screen by doing screen -dr from shell, but what is the key combination to do that from within screen itself?

flag

60% accept rate

2 Answers

vote up 7 vote down check

ctrl-a a d

link|flag
If you've customized screen's escape character to something other than Ctrl-A, then the key sequence will be quite different. :) – slacy Mar 16 at 22:28
Yeah, you're on your own with that. <esc> a d may work; the man page is ambiguous, since it says that a sends the escape character, then clarifies that what it means by that is ctrl-A. So it's a crapshoot. – chaos Mar 16 at 22:37
Thanks, there we go, that's exactly what I remembered too and when I told it to my co-worker who was having this problem, he said it didn't work. Of course, now I found out he was pressing ctrl-a, ctrl-a, d, instead of ctrl-a, a, d. Voted and closed. – Artem Russakovskii Mar 16 at 23:32
I <3 stackoverflow. I just had this issue, and it's the 2nd google result. Thanks a heap! – David Claridge Oct 19 at 1:06
vote up 0 vote down

ctrl+a a will pass the escape sequence (ctrl+a) to the sub-screen.. So, ctrl+a a d will do ctrl+a d in the sub-screen (detaching it)

It works with any screen command, for example ctrl+a, a, c will create a window in the sub-screen

link|flag

Your Answer

Get an OpenID
or

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