Answers for "how to do screen capture on ubuntu"

5

ubuntu capture screen

sudo apt install flameshot
Posted by: Guest on January-21-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 "Shell/Bash"

Browse Popular Code Answers by Language