I ssh in to my ubuntu machine usimg mobaxterm.
This works very well.
Sometimes I want to keep a process running but exit my ssh session (and exit mobaxterm). I have tried the following but regardless as soon as I close mobaxterm my process on the target machine dies, using firefox as an example:
ssh =>
tmux;
firefox & disown;
tmux detach;
exit;
ssh =>
screen firefox & disown;
exit;
I'm sure I've made a really stupid mistake but looking around other posts on this topic I thought I had followed their recomendations but to no evail.
thanks in advance.
Clarification: I can detach my process succesfully using screen or nohup, but is it possible to shut the ssh client and keep the detached process running?