I am planning to log in to my college PC using ssh and run some simulations. These simulations take very long time, so I would like the relevant process to run longer than the ssh session (I want to log in, run the process, log out and collect the results the next day).
How can I do it
- If the process is a command line tool that doesn't expect any inputs (so that I just need the resulting output file)?
- If the process is a GUI, which sadly doesn't save the results to a file, but displays it instead. So in this case I was thinking of using
ssh -X ...command, but then I don't know how to reconnect to the open window.