Advertisement
lowheartrate

Ubuntu screen functions / commands

May 2nd, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. -- Some helpful bookmarks --
  2. -- https://linuxize.com/post/how-to-use-linux-screen/
  3. -- https://help.ubuntu.com/community/Screen
  4.  
  5. -- To check for any detached screens
  6. screen -list
  7.  
  8. -- To create a screen
  9. screen -S [screen name]
  10.  
  11. -- To detach from a screen (without closing server)
  12. Ctrl + A -> Ctrl + D
  13.  
  14. -- To kill a screen (closes the server)
  15. screen -X -S [screen id (usually numbers)] quit
  16.  
  17. -- To attach back to a screen from screen -list
  18. screen -r [screen id (usually numbers)]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement