yum install PHP Loaded plugins: fastestmirror Setting up Install Process Loading mirror speeds from cached hostfile * base: mirrors.aliyun.com * extras: mirrors.aliyun.com * updates: mirrors.aliyun.com * webtatic: us-east.repo.webtatic.com Error: xz compression not available
最近在尝试自己搭建LAMP环境 本来为了更新 PHP5.5 结果发现yum 无法使用 安装任何东西都显示
Error: xz compression not available
网上说是由于CentOS6的系统安装了epel-release-latest-7.noarch.rpm 导致
在网上找了很久但是答案都是
解决方法: 1.到http://ftp.riken.jp/Linux/fedora/epel/下载epel-release-latest-6.noarch.rpm 2.卸载epel-release-latest-7.noarch.rpm:yum remove epel-release 3.清空epel目录:rm -rf /var/cache/yum/x86_64/6/epel/ 4.安装epel6:rpm -ivh epel-release-latest-6.noarch.rpm (责任编辑:IT)
但是这个不能解决我的问题 我这里尝试N 多次都不行
最后在一个国外论坛发现了一个帖子 完美解决我的问题 以下是答案 希望能对碰到这个问题的你有帮助
在CentOS 6.X上为我工作 sudo rpm -e epel-release-7-5.noarch wget http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm sudo rpm -ivh epel-release-6-8.noarch.rpm sudo yum clean all sudo rpmdb -v --rebuilddb sudo yum -y install libselinux-python
附上 原帖子连接 https://unix.stackexchange.com/questions/225684/rhel6-error-xz-compression-not-available
转载请注明出处:https://my.oschina.net/iceTear/blog/1162681
原文链接:/centos/376912.html