how to install .tar.xz file in ubuntu

https://superuser.com/questions/904001/how-to-install-tar-xz-file-in-ubuntu

First, you should have xz installed on your system. If not:

apt-get install xz-utils

Then, instead of “z” option in tar command (which is for zip), you must use “J” (which is for xz):

$ tar xvfJ fich.tar.xz

猜你喜欢

转载自blog.csdn.net/love_legain/article/details/80935790