How to extract tar xz in Linux

2014年8月01日 13:24

First decompress the file with the appropriate xz command

unxz linux-2.6.32.61.tar.xz

Then

tar xvf linux-2.6.32.61.tar

Note: If not found unxz command, you can try.

cd /usr/local
wget http://tukaani.org/xz/xz-5.0.5.tar.gz
tar xzvf xz-5.0.5.tar.gz
**don't forget README file
./configure
make -C po update-po
make install

继续阅读 »