有的时候我们需要SCP拷贝的文件很大,不能一直等着,那如何使SCP可以在后台运行呢?
下面介绍一个简单的方法,4步可以使SCP在后台运行:
shell> nohup scp test.tar.gz root@192.168.0.7:/home
nohup: appending output to nohup.out
root@192.168.0.7's password:
此时输完密码进程会挂起,还是在前台运行
会出现如下提示:
[1]+ Stopped nohup scp test.tar root@192.168.0.7:/home
shell> bg
[1]+ nohup scp test.tar root@192.168.0.7:/home &