nohup + rsync 后台断点续传文件

引用

https://www.jianshu.com/p/82fe7f184b93

步骤

执行

nohup rsync --ignore-existing -razP -e ssh  /data1 [email protected]:/data1

输出

nohup: appending output to `nohup.out'

Password:

输入密码后按ctrl+z,中断进程
服务器输出

[1]+ Stopped nohup rsync --ignore-existing -razP -e ssh /data1 [email protected]:/data1

然后紧接着输入:

bg

上述命令便又能在后台恢复运行了

[1]+ nohup rsync --ignore-existing -razP -e ssh /data1 [email protected]:/data1

在当前文件夹下,会生成一个nohup.out的日志文件,会收集输出日志信息
查看日志可以用如下命令

tail -f nohup.out

评论

还没有人评论,抢个沙发吧...

Viagle Blog

欢迎来到我的个人博客网站