Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

bash : how to use screen to have a term session used at home after work?

Everything is in the title, I would like to start a session at work and be able to get it when i'm at home.

like image 397
user65636 Avatar asked Mar 05 '09 13:03

user65636


1 Answers

While at work, start a screen session:

$ screen

Do whatever work you want on the terminal session, and when you are leaving to go home, detach the session by pressing CTRL-A then D. Your screen session will then disappear. To re-activate it once you are home, resume the session with the -r option:

$ screen -r

All your work will appear as you enter the saved screen session.

like image 85
Rudd Zwolinski Avatar answered Oct 01 '22 17:10

Rudd Zwolinski