Screen
Screen or GNU Screen is a terminal multiplexer. In other words, it means that you can start a screen session and then open any number of windows (virtual terminals) inside that session. Processes runn
Create new screen session
screen -S session_name
View sessions
screen -ls
Attach to a session:
screen -x session_name
Detach from the session:
Control Key + a + d
Last updated
Was this helpful?