[[HomePage]] > [[ComponentHowTo Components and HowTos]] > [[FileTypes]] ====**XZ Utils**==== [[http://tukaani.org/xz/ file compression]] --- ~-[[software]] package ##xz## ~~-[[http://www.smokey01.com/coolpup binary code]] ~~-[[http://tukaani.org/xz/ source code]] ~~-##+[[bzip2]],+[[grep]],+[[gzip]],+[[tar]],+[[zlib]]## --- ~-xz compression creates: ~~-30% smaller output than gzip compression ~~-15% smaller output than bzip2 compression --- ~-verify installed version via the command-line interface: %%xz --version%% --- ~-to un-pack (extract) files with the extension //.tar.xz// (or //.txz//), enter into the command-line interface (upper-case J option, not lower-case j option): %%tar xfJv [file...]%% --- ~-to decompress (extract) a file or directory with the extension //.xz//: %%xz -d [file...] [dir...]%% --- ~-to compress a file or directory with xz compression: %%xz [file...] [dir...]%% --- ~-to create an archive of a directory with xz compression: %%tar cfJv file.tar.xz [dir...]%% --- ~-%%./configure CFLAGS="-mtune=generic -O2 -pipe -fomit-frame-pointer" CXXFLAGS="${CFLAGS}" --prefix=/usr --sysconfdir=/etc --localstatedir=/var --host=i486-pc-linux-gnu --disable-static%% --- ~-http://www.qa.com/about-qa/blogs/2010/april/getting-to-know-xz-as-the-best-compression-tool ~-http://www.t2-project.org/packages/xz.html --- ---- ==Categories== CategoryCompression CategorySoftware