Linux學習筆記《基本命令3

2021-08-27 02:47:42 字數 1337 閱讀 3162

檔案壓縮與解壓

下面來學習四個常用的壓縮命令。

gzip

特點:1.只能壓縮檔案,不能壓縮目錄

2.不保留原始檔

[root@localhost test]# gzip aaa 將aaa檔案進行壓縮

[root@localhost test]#gunzip aaa.gz 將aaa.gz檔案進行解壓

[root@localhost test]# gzip -d aaa.gz 作用同上

tar

tar型別的的壓縮檔案應該是大家最常見的吧,在網上下的好多軟體也是這種格式的。

引數:-x解包.tar檔案

-v 顯示詳細資訊

-f 指定解壓檔案

-z 解壓縮

[root@localhost test]# tar -zcvf tatga.tar.gz tatgz 壓縮tatgz資料夾為tatga.tar.gz壓縮檔案

注意:

在linux下副檔名不是標識檔案的屬性

[root@localhost test]# file [檔名] 檢視任何乙個檔案的型別

[root@localhost test]# tar -cf tatga.tar tatgz 對tatgz檔案打包

[root@localhost test]# gzip tatga.tar 對tatga.tar包檔案壓縮

[root@localhost test]# tar -zxvf tatga.tar.gz 對壓縮檔案進行解壓

zip

功能:可以壓縮檔案和目錄,是windows 和linux 通用的壓縮格式

[root@localhost test]# zip a.zip a 把a檔案壓縮成a.zip

[root@localhost test]# zip -r tatgz.zip tatgz 壓縮tatgz目錄為tatgz.zip

[root@localhost test]# unzip tatgz.zip 解壓檔案

bzip2

gzip功能基本相同

只能壓縮檔案

用 -k 命令可以保留原檔案

[root@localhost bzip2]# bzip2 -k fnngj 對fnngj檔案進行壓縮

[root@localhost bzip2]# bunzip2 fnngj.bz2 對壓縮檔案fnngj.bz2進行解壓

Linux學習筆記之基本命令(3)

1.如何通過命令列重啟linux作業系統?答 reboot 2.如何在命令列中快速刪除游標前 後的內容?答 前 ctrl u 後 ctrl k 3.如何刪除 tmp下所有a開頭的檔案?答 rm f tmp a 4.系統重要檔案需要備份,如何把 etc passwd備份到 tmp目錄下?答 cp et...

Linux基本命令學習 3

密令 touch 功能 建立檔案 引數 檔名稱 功能 如果有目錄則在制定位置建立檔案,否則在當前目錄建立檔案。命令 cat 功能 檢視檔案內容 引數 n 功能 在瀏覽資料的時候,前段出現行號。命令 tac 功能 倒著瀏覽,和cat差不多 命令 more 功能 分頁檢視內容 其他功能 f 與 空格 為...

linux學習筆記 基本命令

常用命令 區分大小寫 格式 命令字 引數 ls顯示目錄內容 ls l 檔案和檔案基本資訊 ls a顯示所有檔案包括隱藏檔案 ls s 檔案和檔案大小 ls lash 多個命令混合使用 如果乙個混合命令是乙個單詞則需要加連個 例如 ls help clear ctrl l清屏 ctrl d esc e...