0

I launch connexion ssh to use rsync command in terminal and I would like to shutdown my computer, but I need to let run the process rsync.

I executed this command on a remote host. If I quit now then the process will stop I guess?

Yes I know I should run my command with option to avoid to lost the process.

DragonF0rce
  • 21
  • 1
  • 1
  • 4

2 Answers2

2

You can run disown -a && exit which will release all the shell processes you have started from the current shell and end the current shell. The processes will continue to run.

manifestor
  • 2,423
  • 6
  • 22
  • 47
1

It is very generic, and there are many solution.

You can use nohup. But often on remote host a screen (or tmux) is used.

On the first case: process continue also if terminal is terminated (but you should no more use stdin/stout/stderr (a redirect it is ok).

On the second, it is just a virtual terminal, so you can return (from an other computer) and see the terminal.

Giacomo Catenazzi
  • 2,630
  • 9
  • 15