壓縮檔案


  1. 壓縮gzip
    副檔:.gz
    原始檔會被壓縮檔取代。
    # gzip testfile
    # ls -l test*
    -rw-r--r-- 1 root root 29  6月 10 17:15 testfile.gz
    

  2. 解壓縮 gz 檔
    # gunzip testfile.gz
    [root@cloud ~]# ls -l test*
    -rw-r--r-- 1 root root 0  6月 10 17:15 testfile
  3. 壓縮 zip
    # zip -r testfile.zip testfile # -r:指定壓縮後的檔案名稱,最後並加上需要壓縮的來源檔案。
      adding: testfile (stored 0%)
    # ls -l test*
    -rw-r--r-- 1 root root   0  6月 10 17:15 testfile
    -rw-r--r-- 1 root root 166  6月 10 17:27 testfile.zip
  4. 解壓 zip
    # unzip testfile.zip
    Archive:  testfile.zip
    replace testfile? [y]es, [n]o, [A]ll, [N]one, [r]ename: y
     extracting: testfile
    # ls -l test*
    -rw-r--r-- 1 root root   0  6月 10 17:15 testfile
    -rw-r--r-- 1 root root 166  6月 10 17:27 testfile.zip

留言

熱門文章