The line
tar (child): xz: Cannot exec: No such file or directory
gives you the real error. The xz
programm cannot be executed, probably because it is not installed. To install the xz
(de)compression tools, issue
sudo apt-get install xz-utils
Per Как распаковать архив, который использует .xz? Я попытался, tar xf php-5.6.0RC4.tar.xz
и tar -xJf php-5.6.0RC4.tar.xz
в обоих случаях я получаю следующее:
tar (child): xz: Cannot exec: No such file or directory tar (child): Error is not recoverable: exiting now tar: Child returned status 2 tar: Error is not recoverable: exiting now
Это этот php-5.6.0RC4.tar.xz .
Я использую Ubuntu 14.04 LTS.
В чем дело?
The line
tar (child): xz: Cannot exec: No such file or directory
gives you the real error. The xz
programm cannot be executed, probably because it is not installed. To install the xz
(de)compression tools, issue
sudo apt-get install xz-utils