第十二单元
1.在server主机中把/etc目录打包压缩到/mnt中,名字为etc.tar.gz
[[email protected] Desktop]# tar zcvf /mnt/etc.tar.gz /etc ###压缩打包
[[email protected] Desktop]# ls /mnt ###查看是否成功,已成功
etc.tar.gz
2.复制server主机中的etc.tar.gz到desktop主机的/mnt中
[[email protected] .ssh]# scp /mnt/etc.tar.gz [email protected]:/mnt
Password:
etc.tar.gz 100% 8537KB 8.3MB/s 00:00
3.同步server主机中的/etc中的所有文件到desktop主机中/mnt中,包含链接文件
[[email protected] .ssh]# rsync -l /etc/ [email protected]:/mnt/
Password:
skipping directory . ###??
时间: 2024-10-27 19:17:46