范例一:
将整个 /etc 目录下的文件全部打包成为 /tmp/etc.tar
[[email protected] ~]# tar -cvf /tmp/etc.tar /etc <==仅打包,不压缩!
将 /tmp/etc.tar 文件解压缩在 /usr/local/src 底下
[[email protected] ~]# cd /usr/local/src
[[email protected] src]# tar -xvf /tmp/etc.tar
tar命令的详细解释 http://blog.csdn.net/eroswang/article/details/5555415
时间: 2024-11-05 17:13:22