GNU Screen - A Hacker's Ideal Terminal
1–10 of 103 posts
Re: GNU Screen - A Hacker's Ideal Terminal
#2There is no reason why you shouldn't use screen when ssh'ing in and working on remote machines, it will save you tons of time in case the connection goes down, plus allows your to keep a persistent working environment on remote boxes.
ssh -t user@host screen -rx
That will drop you immediately to a running screen on connectRe: GNU Screen - A Hacker's Ideal Terminal
#3See http://renesd.blogspot.com/2009/09/screen-for-ghetto-servers... for more pointers.
Re: GNU Screen - A Hacker's Ideal Terminal
#4In your .screenrc file:
escape ^Ww
This will default C-w as the command character.Re: GNU Screen - A Hacker's Ideal Terminal
#5Re: GNU Screen - A Hacker's Ideal Terminal
#6Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.
Re: GNU Screen - A Hacker's Ideal Terminal
#7If you want something that isn't GNU or GPL'd, take a look at `tmux`.
Re: GNU Screen - A Hacker's Ideal Terminal
#8I recently found BSD implementation -- tmux better than GNU screen.
Re: GNU Screen - A Hacker's Ideal Terminal
#9Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.
Isn't C-w kill-region in emacs? I recently came up against this problem too, but what else to change it to .. ?
Re: GNU Screen - A Hacker's Ideal Terminal
#10Screen uses C-a as its "command" character. Unfortunately, C-a means "go to start of line" in emacs and terminals. The solution? In your .screenrc file: escape ^Ww This will default C-w as the command character.
Isn't C-w kill-region in emacs? I recently came up against this problem too, but what else to change it to .. ?