Linux解壓縮檔案,安裝檔案

2021-08-07 09:11:07 字數 1420 閱讀 1600

zip/unzip:

zip foo.zip *.txt

unzip foo.zip

gzip/gunzip:

gzip foo.txt

gunzip foo.txt.gz

gzip -d foo.txt.gz功能同gunzip

bzip2/bunzip2:

bzip2 foo.txt

bunzip2 foo.txt.bz2

bzip2 -d foo.txt.bz2功能同bunzip2

tar:打包解包工具,字尾為tar

-c:打包

-x:拆包

-t:檢視

以上三個引數不能同時使用

-f:指定檔案,放在最後

-v:顯示詳細資訊

-z:使用gzip/gunzip進行壓縮解壓

-j:使用bzip2/bunzip2進行壓縮解壓

tar -cvf foo.tar *.txt

tar -xvf foo.tar

tar -zcvf foo.tar.gz *.txt

tar -zxvf foo.tar.gz

tar -jcvf foo.tar.gz *.txt

tar -jxvf foo.tar.gz

原始碼安裝:

配置:configure

編譯:make

安裝:make install

rpm安裝:

命令引數:

-i:安裝

-e:解除安裝

-v:顯示詳細資訊

-h:顯示安裝進度

-u:公升級

-q:查詢

yum安裝:

命令:

清空快取:yum clean all

生成快取:yum makecache

安裝軟體:install

解除安裝軟體:remove

更新軟體:update

搜尋軟體:search

列表顯示:list

更改yum源:

cd /etc/yum.repos.d/

cp centos-base.repo centos-base.repo.bak

linux解壓縮檔案

gz 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 解壓 tar zxvf filename.tar.gz 壓縮 tar zcvf filename.tar.gz dirname bz2 解壓1 bzip2...

解壓縮檔案

public static fastzip fz new fastzip 壓縮檔案 壓縮檔案的路徑與名稱 被壓縮的檔案路徑 解壓密碼 null代表無密碼 public static string filetozip string zipfilepath,string filepath,string ...

解壓縮檔案

using system using system.collections.generic using system.linq using system.text using system.threading.tasks using system.io namespace commonhelper ...