Skip to content

Instantly share code, notes, and snippets.

@diegovarussa
Last active May 22, 2018 01:23
Show Gist options
  • Save diegovarussa/6944332559724fa80ee9b057e6448325 to your computer and use it in GitHub Desktop.
Save diegovarussa/6944332559724fa80ee9b057e6448325 to your computer and use it in GitHub Desktop.
Screen Important Comands

Create a new screen session with name.

screen -S session_name

Detach from a current scree session.

ctrl+a d

List all screen sessions.

screen -ls

Restore a session screen.

screen -r session_name

Start detached session

screen -dmS session_name your_command

Kill session

screen -X -S session_name quit

Fix bad chars

export LANG="C.UTF-8"

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