Issue
How to keep the process running on remote server even if the ssh connection is closed?
id='dv4'>
Solution
You can use screen to detach a session. You connect to your ssh server, launch screen and then your computation...
At your next connection, screen -a
to attach previous sessions
see : http://www.bangmoney.org/presentations/screen.html
Answered By - leJon Answer Checked By - Timothy Miller (WPSolving Admin)