Answers for "print screen on ubuntu"

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
10

particular screenshot in ubuntu

Prt Scrn to take a screenshot of the desktop.
Alt + Prt Scrn to take a screenshot of a window.
Shift + Prt Scrn to take a screenshot of an area you select.
Posted by: Guest on April-26-2020
0

screen in ubuntu

screen -r
Posted by: Guest on May-07-2020
0

screen in ubuntu

screen -r 10835
Posted by: Guest on May-07-2020
0

screen in ubuntu

screen
Posted by: Guest on May-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language