How can I run a Linux command that still runs after I close my PuTTY SSH session?

后端 未结 4 1629
情话喂你
情话喂你 2021-01-15 05:26

I am connecting to my NAS over putty which is running linux on it.

I wanted to move a big directory from one location to another. Is it possible to keep the process

4条回答
  •  情话喂你
    2021-01-15 06:03

    Start your task with 'nohup' and put it in the background with '&', e.g.:

    $ nohup mv /here /there &
    $ exit
    

    and it should continue running.

提交回复
热议问题