<html><head><meta http-equiv="Content-Type" content="text/html; charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Dear Mery,<div class=""><br class=""></div><div class="">GATE like any other program launched in a terminal will be kill if it receives some specific signal like SIGHUP (signal hang up) sent when you close a terminal.</div><div class=""><br class=""></div><div class="">If you want your program to continue even if you close the terminal, you just need to disregard the signal SIGHUP when you launch GATE (or any other program). To do this you can simply use the command nohup (no hang up):</div><div class=""><br class=""></div><div class=""><b class="">nohup</b> Gate main.mac<b class=""> &</b></div><div class=""><br class=""></div><div class="">I recommend also redirecting the standard output and error to a log file so you can see what happened during the execution:</div><div class=""><br class=""></div><div class="">nohup Gate main.mac <b class="">> out.log 2>&1</b> &</div><div class=""><br class=""></div><div class="">You can use this on your computer as well as on a server over ssh.</div><div class=""><br class=""></div><div class="">Kind regards,</div><div class="">  Maxime<br class=""><div><br class=""><blockquote type="cite" class=""><div class="">On 5 Apr 2018, at 09:02, Mery MB <<a href="mailto:mery.mb.mph@gmail.com" class="">mery.mb.mph@gmail.com</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><div class=""><div class=""><div class="">Dear Gate User<br class=""><br class=""></div>Is there any way to continue the Gate programs after closing the terminal with any reason?<br class=""> <br class="">  <br class=""><br class=""></div>Best <br class=""></div>Mery<br class=""></div>
_______________________________________________<br class="">Gate-users mailing list<br class=""><a href="mailto:Gate-users@lists.opengatecollaboration.org" class="">Gate-users@lists.opengatecollaboration.org</a><br class="">http://lists.opengatecollaboration.org/mailman/listinfo/gate-users</div></blockquote></div><br class=""></div></body></html>