Rate this article :
This article was useful to you ?
Yes
No
Vous avez noté 0 étoile(s)
Sommaire
Procédure
Screen is a powerful tool that allows you to have several SSH "console windows". With screen, you can keep several consoles running with a single SSH connection.
To install screen, run the following command:
apt-get install screen
To create a new :
screen
To detach from this screen without closing it :
Ctrl+A
, then press the D
key.
To reconnect to this screen later :
screen -x
If you have several screens running, screen -x
will not work, and a list of available screens will be displayed. To connect to one of them :
screen -x
You can also name your screen when it is created:
screen -S 'Gitlab
So, when you want to connect to this screen :
screen -x 'Gitlab
If you lose your connection, the commands in the screen will still be executed. You can connect again with SSH and attach yourself to the screen to resume your activities.
Rate this article :
This article was useful to you ?
Yes
No
2mn reading
How do I configure the firewall on a dedicated VPS server?
1mn reading
How can I connect as root on a dedicated VPS server with Putty?
0mn reading
Linux / Debian SSH commands
0mn reading
SSH - Apt-get command: Installing and uninstalling packages