screen -
- virtual terminal used to access mutliple separate terminal sessions.
- used to run the programs in the background even if you close the main terminal.
For reference - http://aperiodic.net/screen/quick_reference
- virtual terminal used to access mutliple separate terminal sessions.
- used to run the programs in the background even if you close the main terminal.
start a new screen session with session name | screen -S |
list running sessions/screens | screen -ls |
attach to a running session | screen -r |
… to session with name | screen -r |
detach | screen -r |
For reference - http://aperiodic.net/screen/quick_reference
Comments