3
6

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 cvf {固めた後のファイル名} {対象ファイル1} {対象ファイル2} ...

tar cvf hoge.tar file1 file2

解凍

※固めるときにディレクトリ構成が記憶されているため、固めた時と同じ場所で解凍する。

sudo tar xvf conf.tar

tarファイルの中身を確かめたいとき

tオプションで解凍した時の中の情報を擬似的に表示してくれる

tar tvf conf.tar

解凍先を指定したい場合

オプション

c: 固める
x: 解凍
v: 表示する
f: ファイルの指定
t: テスト

3
6
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
3
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?