ファイルをまとめる
【tar】ファイルをまとめる。圧縮、解凍する。
【gzip】【bzip2】ファイルを圧縮する。
【gunzip】【bunzip2】ファイルを解凍する。
tar
ファイルをまとめる。
複数ファイルをまとめたデータをアーカイブスファイルと呼ぶ。
Examples:
tar -cf archive.tar foo bar # Create archive.tar from files foo and bar.
tar -tvf archive.tar # List all files in archive.tar verbosely.
tar -xf archive.tar # Extract all files from archive.tar.
圧縮する際には、-zオプションを付けて、『gzip』経由でファイルを圧縮することができる。
#tar -zcf archive.tar.gz test.txt
#tar tvf archive.tar.gz
-rw-rw-r-- root/root 637 2018-04-01 00:00 test.txt
圧縮する際には、『z』と『c』オプションを利用する。
解凍する際には、『z』と『v』オプションを指定することで、可能。
gzip
ファイルの圧縮。
Usage: gzip [OPTION]... [FILE]...
Compress or uncompress FILEs (by default, compress FILES in-place).
Mandatory arguments to long options are mandatory for short options too.
-c, --stdout write on standard output, keep original files unchanged
-d, --decompress decompress
-f, --force force overwrite of output file and compress links
-h, --help give this help
-k, --keep keep (don't delete) input files
-l, --list list compressed file contents
-L, --license display software license
-n, --no-name do not save or restore the original name and time stamp
-N, --name save or restore the original name and time stamp
-q, --quiet suppress all warnings
-r, --recursive operate recursively on directories
-S, --suffix=SUF use suffix SUF on compressed files
-t, --test test compressed file integrity
-v, --verbose verbose mode
-V, --version display version number
-1, --fast compress faster
-9, --best compress better
--rsyncable Make rsync-friendly archive
gunzip
ファイルの解凍。
Usage: /bin/gunzip [OPTION]... [FILE]...
Uncompress FILEs (by default, in-place).
Mandatory arguments to long options are mandatory for short options too.
-c, --stdout write on standard output, keep original files unchanged
-f, --force force overwrite of output file and compress links
-k, --keep keep (don't delete) input files
-l, --list list compressed file contents
-n, --no-name do not save or restore the original name and time stamp
-N, --name save or restore the original name and time stamp
-q, --quiet suppress all warnings
-r, --recursive operate recursively on directories
-S, --suffix=SUF use suffix SUF on compressed files
-t, --test test compressed file integrity
-v, --verbose verbose mode
--help display this help and exit
--version display version information and exit
With no FILE, or when FILE is -, read standard input.
そのほか
LPIC:101
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image