4
2

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]ファイル圧縮(tarボール)の方法

Posted at

##背景
業務中にファイル圧縮する場面があり、先輩にtarボールのやり方を教えていただいた。
正直あまり使用するケースはないので、覚えているうちに備忘として残しておこうかと。。

##使用環境
Fedora27

##圧縮方法
####コマンド

tar czf 圧縮後のファイル名.gz 圧縮するファイル(フォルダ名)

####使用しているオプション

  • c:作成
  • z:gzip形式で圧縮する
  • f:ファイル

##展開方法
####コマンド

tar xzf ファイル名

→展開されたファイル(フォルダ)は圧縮後のファイル名ではなく圧縮されたフォルダ名が出力されます。

##その他(補足など)

  1. 展開(圧縮時でも)にvオプションもつける。(結果が出力されるので精神的に安定します。)
  2. (展開の場合)以下のコマンドでテストすることができます。(圧縮したファイルを/var/tmpに格納してから実施するのがお薦めです。)
tar xzf ファイル名

##最後に
Linux関連の知識で知らないことがたくさんあることを痛感させられるので、
今後もこういった内容を投稿しようかと考えてます。

##参考
https://ah-2.com/2013/07/03/tarball.html
https://eng-entrance.com/linux-command-tar

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?