壓縮技術現在主流的是gz和bz2
下面分別講解兩種技術的壓縮和解壓
tar -czf mytest.tar.gz dir1 dir2 hello.c //打包壓縮tar -xzf mytest.tar.gz //解壓
tar -cf mytest.tar dir1 dir2 hello.c //打包gzip mytest.tar mytest.tar.gz //壓縮,只能壓縮已經打包好成包的檔案
gzip -d mytest.tar.gz //解壓
tar -cjf mytest.tar.bz2 dir1 dir2 hello.ctar -xjf mytest.tar.bz2
tar -cf mytest.tar dir1 dir2 hello.c //打包bzip2 mytest.tar mytest.tar.bz2 //壓縮
bzip2 -d mytest.tar.bz2
Linux下檔案的壓縮和解壓
tar命令 解包 tar xvf filename.tar 打包 tar cvf filename.tar dirname 解包 tar i zstd xvf file.tar.zst gz命令 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzi...
linux 下檔案加密壓縮和解壓的方法
方法一 用tar命令 對檔案加密壓縮和解壓 壓縮 html view plain copy tar zcf filename openssl des3 salt k password dd of filename des3 此命令對filename檔案進行加碼壓縮 生成filename.des3加密...
linux 下檔案加密壓縮和解壓的方法
方法一 用tar命令 對檔案加密壓縮和解壓 壓縮 html view plain copy tar zcf filename openssl des3 salt k password dd of filename des3 此命令對filename檔案進行加碼壓縮 生成filename.des3加密...