Screen is software that allows you to create multiple windows to perform multiple tasks simultaneously, and processes remain active even when exiting.
Installation process:
apt-get install -y screen
Start and basics of working with Screen:
In all cases, a register is important for correct operation.
To create a new screen window, use the following command:
screen -S <NAME>
To navigate to an already created window, use:
screen -x <NAME>
To see a list of all created screen, use the command:
screen -ls
To navigate or exit from screen, use the key combination:
CTRL + A + D
Last updated