VPS를 PHP 7로 업그레이드하고 싶습니다
하지만 저는 매번 이 문제에 직면합니다
[root@cloudbox75067 /]# yum install php70w php70w-opcache
Loaded plugins: fastestmirror
Setting up Install Process
Loading mirror speeds from cached hostfile
* base: ftp.nluug.nl
* epel: fedora.cu.be
* extras: nl.mirror.babylon.network
* updates: ftp.nluug.nl
* webtatic: uk.repo.webtatic.com
Error: xz compression not available
답변1
이 문제는 컴퓨터에 잘못된 버전의 epel이 설치되어 있는 경우 발생합니다. 그렇다면 epel 버전을 제거해야 합니다.
yum remove epel-release
때로는 이것만으로는 충분하지 않으며 다음과 같은 방법으로 캐시를 삭제해야 할 수도 있습니다.
rm -rf /var/cache/yum/x86_64/6/epel
그런 다음 epel-release를 다시 설치할 수 있습니다
yum -y install epel-release
원천:https://stackoverflow.com/questions/27026003/xz-compression-install-on-centos/31945905#31945905