Published
- 1 min read
linux screen
The solution for this is noted below
linux screen
Solution
Linux screen commands
# Starting Named Session
$ screen -S session_name
# Close screen (with id)
$ screen -X -S 12345 quit
#All screen list
$ screen -ls
#Reattach to a Linux Screen
$ screen -r 12345 (screen id)
#Detach from Linux Screen Session
$ Ctrl+a d
Try other methods by searching on the site. That is if this doesn’t work