<<<第十二单元练习>>>
- 在server主机中把/etc目录打包压缩到/mnt中,名字为etc.tar.gz
tar zcvf /mnt/etc.tar.gz /etc
2.复制server主机中的etc.tar.gz到desktop主机的/mnt中
scp /mnt/etc.tar.gz [email protected]:/root/Desktop
3.同步server主机中的/etc中的所有文件到desktop主机中/mnt中,包含链接文件
rsync -l /mnt/etc.tar.gz [email protected]:/mnt
时间: 2024-12-29 07:10:40