gzip [root@redhat root]# gzip test1.txt //压缩
gunzip [root@redhat root]# gunzip test1.txt.gz //解压 [root@redhat root]# gzip -d test1.txt.gz //解压
[root@redhat root]# zcat test1.txt.gz //直接查看gz文件 十月 2011 日 一 二 三 四 五 六 1 1 02 3 4 5 6 7 8 09 10 11 12 13 14 15 09 10 11 12 13 14 15 16 17 18 19 20 21 22 compress, uncompress unix上一种较老的压缩工具。
bzip2 [root@redhat root]# bzip2 test1.txt //压缩
bunzip2 [root@redhat root]# bunzip2 test1.txt.bz2 //解压 [root@redhat root]# bzip2 -d test1.txt.bz2 //解压
tar [luowei@redhat luowei]$ tar -cvf test.tar test //给test目录打包成test.tar [luowei@redhat luowei]$ tar cvf aaa.tar allout test.tar //将allout与test.tar文件打包到aaa.tar文件中 [luowei@redhat luowei]$ tar xvf test.tar //解包 [luowei@redhat luowei]$ tar tf test.tar //查看test.tar包文件中的内容 [luowei@redhat luowei]$ tar cvf bbb.tar stdout -C /home/luowei/test 将stdout打包成bbb.tar并存放到/home/luowei/test目录下
[root@redhat root]# tar zcvf test.tar.gz test //给test目录打包,并添加到压缩文件 [root@redhat root]# tar zxvf test.tar.gz //对压缩文件解压并解包
[root@redhat root]# tar jcvf test.tar.bz2 test //把test目录打包并压缩成bz2文件 [root@redhat root]# tar jxvf test.tar.bz2 //对打包压缩后的bz2解压并解包
dump [root@redhat root]# dump -0 -f /tmp/dump1 /root/test //将test目录备份到dump1文件 [root@redhat /]# dump -0u -f /tmp/bootdump /boot //将顶层分区boot备份到bootdump文件
[root@redhat /]# cat /etc/dumpdates //查看到分区的备份记录 [root@redhat root]# dump -0 -f /tmp/test2dump test2.txt //备份文件test2.txt
[root@redhat root]# restore -tf /tmp/test2dump //查看备份文件的内容 [root@redhat root]# restore -rf /tmp/dump1 //将dump1还原到当前文件夹下
|