티스토리 뷰

Study/System

xz file extension

pursh 2013. 11. 11. 10:56

xz 은 손실 없이 압축할 수 있는 압축프로그램이다.

얼마 전부터 소스 파일을 다운 받게 되면 tar.gz, tar.bz2 보다 tar.xz 파일을 더 많이 보게 된다.

 

http://tukaani.org/xz/format.html

 

위 사이트에서 받아서 설치할 수 있다.

 

사용법은 gzip 과 유사하다.

 

# xz [압축할 파일]

# xz -d [압축 해제할 파일]

 

# xz --help
Usage: xz [OPTION]... [FILE]...
Compress or decompress FILEs in the .xz format.

  -z, --compress      force compression
  -d, --decompress    force decompression
  -t, --test          test compressed file integrity
  -l, --list          list information about .xz files
  -k, --keep          keep (don't delete) input files
  -f, --force         force overwrite of output file and (de)compress links
  -c, --stdout        write to standard output and don't delete input files
  -0 ... -9           compression preset; default is 6; take compressor *and*
                      decompressor memory usage into account before using 7-9!
  -e, --extreme       try to improve compression ratio by using more CPU time;
                      does not affect decompressor memory requirements
  -q, --quiet         suppress warnings; specify twice to suppress errors too
  -v, --verbose       be verbose; specify twice for even more verbose
  -h, --help          display this short help and exit
  -H, --long-help     display the long help (lists also the advanced options)
  -V, --version       display the version number and exit

With no FILE, or when FILE is -, read standard input.

 

tar 를 통해서 압축을 풀려면 tar v1.22 이상의 버전을 사용해야 한다.

 

  -j, --bzip2                filter the archive through bzip2
  -J, --xz                   filter the archive through xz
      --lzip                 filter the archive through lzip
      --lzma                 filter the archive through lzma
      --lzop
      --no-auto-compress     do not use archive suffix to determine the
                             compression program
  -z, --gzip, --gunzip, --ungzip   filter the archive through gzip
  -Z, --compress, --uncompress   filter the archive through compress

 

 

# tar Jxvf xxx.tar.xz

# tar xvf --xz xxx.tar.xz

'Study > System' 카테고리의 다른 글

openssh v6.4p1 설치  (0) 2013.11.11
openssl v1.0.1.e 설치  (0) 2013.11.11
Find 명령어(Man Page)  (0) 2013.11.08
apache error  (0) 2013.11.08
apache SetEnvIf  (0) 2013.11.08
댓글