先說下常用的情況:
兩臺機器IP分別為:A.104.238.161.75,B.43.224.34.73。
在A服務(wù)器上操作,將B服務(wù)器上/home/lk/目錄下所有的文件全部復(fù)制到本地的/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服務(wù)器上將/root/lk目錄下所有的文件傳輸?shù)紹的/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命令