First off, install screen;
yum install screen
Now, type;
screen
Now, you can start a new screen. You can also utilize the -S option to name your screen like so;
screen -S 1
So your in a new screen now, awesome. Run your dang commands now.
To detach your screen while still leaving it running, you may push ctrl+a and then d.
To attach back to the screen;
screen -r
That’s about it. Screen For Dummies.
Other Commands;
Ctrl+a and then C; create a new screen
Ctrl+a and then N; switches between screens
|