Answers for "print screen ubuntu command line"

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
0

screen in ubuntu

screen
Posted by: Guest on May-07-2020

Code answers related to "print screen ubuntu command line"

Python Answers by Framework

Browse Popular Code Answers by Language