Hello, I have access to a linux compute server that I connect to using ssh.
When I launch an optistruct job, I want to be able to exit the command line or turn off the laptop without killing the job on the server.
I tried "nohup" with "&" but the job still ends up receiving SIGHUP.
Also tried running it as usual then pausing it with Ctrl+Z then putting it in the background with "bg" then disowning it with "disown -h". And it still ends up stopping (eventhough with this method it just stops without printing SIGHUP in the out file).
Any ideas on how to solve this ? Thank you