1.在server主机中把/etc目录打包压缩到/mnt中,名字为etc.tar.gz
[root@localhost Desktop]$ tar zcf etc.tar.gz /etc
[root@localhost Desktop]$ mv etc.tar.gz /mnt
2.复制server主机中的etc.tar.gz到desktop主机的/mnt中
[root@localhost Desktop]$ tar zcf etc.tar.gz /etc
[root@localhost Desktop]$ scp etc.tar.gz westos@172.25.254.104:/mnt
3.同步server主机中的/etc中的所有文件到desktop主机的/mnt中,包含链接文件
[root@localhost Desktop]$ rsync -rl etc.tar.gz westos@172.25.254.104:/mnt
转载请注明原文地址: https://ju.6miu.com/read-200168.html