screen -S SharedSession
in another terminal
screen -x SharedSession
Require same user.
See https://www.howtoforge.com/sharing-terminal-sessions-with-tmux-and-screen for more details and tmux examples
Ctrl + a + h
Ctrl + a + a + d
screen /dev/ttyS0 19200
Network might goes down while full system upgrade
ssh -t machine.to.update screen -d -R -S Upgrade
If it goes down, same command reconnects to the screen session “Upgrade”
Here's a quick cheatsheet for GNU Screen with start/reconnect commands and main key bindings:
screen
screen -S session_name
screen -r
screen -ls
screen -r session_name
All commands are prefixed with `Ctrl+a` (denoted as `C-a` below)
Split Screen:
Copy Mode:
Other Useful Commands:
Remember that you can customize these bindings in your `~.screenrc` file to suit your preferences.
References: