Skip to content

Instantly share code, notes, and snippets.

@alanbacelar
Created July 15, 2020 18:30
Show Gist options
  • Save alanbacelar/6bae794b4b059a51c00b9199fd8adfe3 to your computer and use it in GitHub Desktop.
Save alanbacelar/6bae794b4b059a51c00b9199fd8adfe3 to your computer and use it in GitHub Desktop.
Linux Tips

Screen

Instalation

sudo apt install screen

Show sessions

screen -ls

Create a new session

screen -S name_of_the_session

Detach from a session

crl + a + d

Retach (back to) a session

screen -r [screen_name]

Kill a session

screen -X -S [session # you want to kill] quit

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment