Answers for "install screen command on linux"

1

instal screen di linux

sudo apt-get install screen
Posted by: Guest on November-26-2021
1

how to use screen in ubuntu

# Create a new session
$ screen -S nom_de_la_session

#To disconnect from the session:
$ [CTRL]+[a] then [d]
# just close the terminal and open a new one

# To reconnect to the screen again:
$ screen -r nom_de_la_session
$ screen -ls
$ screen -r [TAB]

# If it doesn’t work try
$ screen -r -d nom_de_la_session
Posted by: Guest on December-27-2021

Code answers related to "install screen command on linux"

Python Answers by Framework

Browse Popular Code Answers by Language