Notes on screen command
Introduction
screen is a terminal multiplexer. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. It is useful for separating programs from the shell that started them and for detaching programs from the terminal without terminating them.
Basic commands
The basic commands are:
- screen -S
- start a new screen session - screen -ls - list all screen sessions
- screen -r
- attach to a screen session - screen -d
- detach from a screen session