On this page
Screen
Screen is a terminal multiplexer
. Processes running in screen will continue to run when their window is not visible even if you get disconnected.
You can check if screen
is installed on your system by typing:
$ screen --version
Command list
Starting a new screen session:
$ screen -S <session-name>
List all the sessions:
$ screen ls
Attach to a session:
$ screen -r <session-name>
Detach from the
screen
session:
Ctrl+a d
Kill the session:
exit
Further reading
- How To Use Linux Screen: https://linuxize.com/post/how-to-use-linux-screen