Linux的文件在系统中传输

本文介绍了Linux系统中文件传输的方法,包括使用scp进行安全复制,rsync进行远程同步,以及多种文件归档和压缩技术,如tar、zip、gz、xz和bz2。重点强调了rsync的速度优势和tar在归档时的注意事项。
摘要由CSDN通过智能技术生成

1.scp

scp   file	user@ip:/dir
scp   user@ip:/file dir

2.rsync ##远程同步,速度块,默认会忽略,文件属性,链接文件,设备文件

#mkdir /mnt/westos; touch /mnt/westos/file{1..5}; chmod 777 file* ; chown student.student file*
#ln -s /mnt/westos/file1 /mnt/westos/westos1
	-r	##同步目录
	-p	##同步权限
	-o	##同步文件所有人
	-g	##同步文件所有组
	-l	##同步链接
	-D	##同步设备文件		##rsync -rpogtl /dev/pts root@172.25.254.200:/mnt
	-t	##同步文件时间戳
rsync 远程同步默认忽略文件 设备 链接
[root@server51 ~]# mkdir Desktop/qq
[root@server51 ~]# cd Desktop/qq
[root@server51 qq]# touch {1..5}
[root@server51 qq]# rsync * root@172.25.254.151:/root/Desktop/ 远程同步
[root@server51 qq]# rsync -r * root@172.25.254.151:/root/Desktop/ 同步目录
[root@server51 qq]# rsync -p * root@172.25.254.151:/root/Desktop/ 同步权限
[root@server51 qq]# rsync -o * root@172.25.254.151:/root/Desktop/ 同步拥有者
[root@server51 qq]# rsync -g * root@172.25.254.151:/root/Desktop/ 同
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值