用scp命令通过SSH互传文件

Posted 42号实验室

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用scp命令通过SSH互传文件相关的知识,希望对你有一定的参考价值。

上传单个文件到远程服务器

命令格式

scp [/path/local_dir/filename] [[email protected]:/path/remote_dir]

上传本地的vimrc文件到远程服务器

15:10 [email protected] /home/luna
$ scp /home/luna/scp/vimrc [email protected]:/usr/home/luna/.vimrc
Password for [email protected]:
vimrc 100% 8090 7.9KB/s 00:00

  

上传文件夹到远程服务器

命令格式

scp -r [/path/local_dir] [[email protected]:/path/remote_dir]

上传当前目录下的tools文件夹到远程服务器

15:35 [email protected] /home/luna/scp
$ scp -r tools [email protected]:/usr/home/luna
Password for [email protected]:
test1.sh 100% 152 0.2KB/s 00:00 
test3.sh 100% 165 0.2KB/s 00:00 
test4.sh 100% 131 0.1KB/s 00:00 
test2.sh 100% 120 0.1KB/s 00:00

  

从远程服务器下载单个文件

命令格式

scp [[email protected]:/path/remote_dir/filename] [/path/local_dir]

从远程服务器下载一个Python3源码压缩包

18:10 [email protected] /home/luna/scp
$ scp [email protected]:/usr/home/luna/Python-3.6.2.tar.xz ~/scp/test 
Password for [email protected]:
Python-3.6.2.tar.xz 100% 16MB 8.1MB/s 00:02

  

从远程服务器下载文件夹

命令格式

scp -r [[email protected]:/path/remote_dir/] [/path/local_dir] 

下载远程服务器上的install文件夹

18:30 [email protected] /home/luna/scp
$ scp -r [email protected]:/usr/home/luna/install ~/scp/test 
Password for [email protected]:
portage-latest.tar.xz 100% 62MB 8.9MB/s 00:07 
install-amd64-minimal-20170727.iso 100% 268MB 10.3MB/s 00:26

  

以上是关于用scp命令通过SSH互传文件的主要内容,如果未能解决你的问题,请参考以下文章

Ubuntu14.04 使用scp远程传输命令进行服务器文件互传

Linux实现两台机器文件互传(SCP命令)

上G文件双机互传首选工具BBCP

scp命令在linux间传送文件的方法

linux centos之间互传文件

Linux下利用ssh远程文件传输 传输命令 scp