歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux基礎 >> Linux技術

Linux 壓縮和解壓

gzip a a文件壓縮成gz格式 a.gz

gunzip a.gz a.gz文件解壓縮成a文件

bzip2 a a文件壓縮成bz2格式 a.bz2

bunzip2 a a.bz2文件解壓縮成a

注 bzip2 比gzip 壓縮的比率高

tar打包

tar cvf /tem/root.tar . 將/tem/root打包成tar包 放在當前目錄下tar cvfz /tem/root.tar.gz /root 將 /root 打包成 /tem/root.tar.gz

tar xvfz /tem/root.tar.gz -c /tmp/ddd 解壓/tem/root.tar.gz到/tmp/ddd 目錄下

Copyright © Linux教程網 All Rights Reserved