先说下常用的情况:
两台机器IP分别为:A.104.238.161.75,B.43.224.34.73。
在A服务器上操作,将B服务器上/home/lk/目录下所有的文件全部复制到本地的/root目录下,命令为:scp -r root@43.224.34.73:/home/lk /root。
具体过程为:
[root@XX ~]# scp -r root@43.224.34.73:/home/lk /root root@43.224.34.73's password: k2.sql 100% 0 0.0KB/s 00:00 k.zip 100% 176 0.2KB/s 00:00 .bash_history 100% 32 0.0KB/s 00:00 .bash_logout 100% 18 0.0KB/s 00:00 .bashrc 100% 231 0.2KB/s 00:00 k3.sql 100% 0 0.0KB/s 00:00 .bash_profile 100% 193 0.2KB/s 00:00 [root@XX ~]# ls
在A服务器上将/root/lk目录下所有的文件传输到B的/home/lk/cpfile目录下,命令为:scp -r /root/lk root@43.224.34.73:/home/lk/cpfile。
具体过称为:
[root@XX lk]# scp -r /root/lk root@43.224.34.73:/home/lk/cpfile root@43.224.34.73's password: k2.sql 100% 0 0.0KB/s 00:00 k3.sql 100% 0 0.0KB/s 00:00 .bash_profile 100% 193 0.2KB/s 00:00 .bash_logout 100% 18 0.0KB/s 00:00 .bash_history 100% 32 0.0KB/s 00:00 k.zip 100% 176 0.2KB/s 00:00 .bashrc 100% 231 0.2KB/s 00:00 [root@XX lk]#
上一个教程:linux命令详解之cd命令
下一个教程:Linux系统命令中screen命令详解