Satori Corporation's lab
圧縮ファイルを伸張する方法
手順一覧
- ターミナルを起動
- tarコマンドを発行
手順詳細
- ターミナルを起動 Ctrl Alt T を同時に押す
- tarコマンドを発行
.tar.gzファイル又は.tgzファイル
tar -xvzf 圧縮ファイル名.tar.gz -C ファイル保存先フォルダのPATHオプションの意味
x tarの伸張(extract)機能を使用するための宣言
v tarに丁寧な説明をさせる
z gzipを使って伸張する
f (標準入出力ではなく)tarファイルを扱う
C ディレクトリを指定する
.tar.bz2ファイル
tar -jxvf 圧縮ファイル名.tar.bz2j bzipファイルを扱う
.tarファイル
tar -xvf 圧縮ファイル名.tar.gz ファイル
gunzip --keep 圧縮ファイル名.gz--keep 又は -k : 元の圧縮ファイルを保持する
改訂日 西暦2019年1月22日火曜日
この記事は合同会社Satori Corporationの社員の実際のコンピューター使用経験に基づいています。
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
how to extract compressed files
route sheet
- start Terminal
- input tar command
details of the route
- start Terminal push Ctrl Alt T at the same time
- input tar command
.tar.gz file or .tgz file
tar -xvzf compressed file's name.tar.gz -C destination directory for extracted filesmeaning of options
x flag of tar's extract mode
v let tar make the detailed description
z extract with gzip
f deal with tar file(not stdio)
C specify destination directory
.tar.bz2 file
tar -jxvf compressed file's name.tar.bz2j deal with bzip file
.tar file
tar -xvf compressed file's name.tar.gz file
gunzip --keep filename.gz--keep or -k : keep an original compressed file
revision date: 2019/1/22 Tuesday
This article is based on actual PC user experience of Satori Corporation's staff.