0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Linux ファイルの圧縮、解凍

Posted at

#gzip, gunzip

圧縮コマンド:gzip  
解凍コマンド:gunzip、もしくは gzip -d
拡張子:.gz

gzipオプション

オプション 説明
-d 圧縮ファイルを展開する
-c 標準出力へ出力する
-r ディレクトリ内のファイルをすべて圧縮する
sample
$ ls
data.txt

$ gzip data.txt
$ ls
data.txt.gz
# もとのファイルは削除されて、.gz拡張子の圧縮ファイルができる

$ gunzip data.txt.gz
$ ls
data.txt
# gzip -d data.txt.gz でも同じ

#bzip2, bunzip2
bzip2、bunzip2も同じように使用できる。gzipよりも圧縮効率は高いが処理に時間がかかる。

圧縮コマンド:bzip2
解凍コマンド:bunzip2、もしくは bzip2 -d
拡張子:.bz2

bzip2オプション

オプション 説明
-d 圧縮ファイルを展開する
-c 標準出力へ出力する

#xz, unxz
bzip2よりもさらに圧縮効率が高いが、さらに処理に時間がかかる。

圧縮コマンド:xz
解凍コマンド:unxz、もしくは xz -d
拡張子:.xz

xzオプション

オプション 説明
-d 圧縮ファイルを展開する
-k 圧縮後、解凍後に元ファイルを削除しない
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?