解压
tar -xvf file.tar
tar -xzvf file.tar.gz
tar -xjvf file.tar.bz2
tar -xZvf file.tar.Z
unrar e file.rar
unzip file.zip
tar zxvf file.tgz
gzip -d
压缩
压缩: tar -cvf FileName.tar DirName
解压: tar -xvf FileName.tar
例子: c++目录 压缩成 c++.tar
tar -cvf c++.tar c++
c++.tar解压成c++
tar -xvf c++.tar