27
17

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.

tar コマンドで圧縮・解凍 まとめ

Posted at

圧縮してアーカイブ

$ tar -cvzf tgzファイル名 圧縮対象ディレクトリ

tar -cvzf  httpd_0409.tar.gz  /etc/http

解凍して展開

$ tar -xvzf tgzファイル名

tar -xvzf  httpd_0409.tar.gz

オプション

-c
新しくアーカイブファイルを作成する。たぶんcreateの意味
-f
アーカイブファイル名をパラメータで指定する。これを指定しないと標準入力 または標準出力が使われる
-t
アーカイブファイルに含まれるファイルの一覧を表示する。たぶんlistの意味
-v
処理の進行しているファイル名を表示する。 -t と併用の場合はタイムスタンプやファイルサイズなども表示する。
-x
アーカイブファイルを展開する。たぶんextractの意味
-z
gzipで圧縮または展開を同時に行う
-z を使う場合は、アーカイブファイルの拡張子として .tar.gz または .tgz がよく使われる。

27
17
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
27
17

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?