Linux和windows之间远程复制

  • A+
所属分类:工具

scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令
Windows与linux间的文件复制方法

1在windows下文件上传到Linux上

scp E:\Scp_file\backup-platform.zip root@192.168.1.6:/opt/

2linux之间的远程复制文件

1:登录到远程

ssh mouren@188.188.188.188

2:从远程服务器复制到本地

scp mouren@188.188.188.188:/home/mouren/ardu.txt /home/gl
scp -r mouren@188.188.188.188:/home/mouren/ardu /home/gl

3:将本地的上传到远程服务器

scp xxx mouren@188.188.188.188:/home/nouren
scp -r xxx mouren@188.188.188.188:/home/nouren

Rsync的使用

rsync -a /opt/media/ remote_user@remote_host_or_ip:/opt/media/ 从本地到远程
rsync -a remote_user@remote_host_or_ip:/opt/media/ /opt/media/ 远程到本地

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: