Centos6

如何解決 Centos 6.2 中的包損壞問題?

  • June 16, 2017

我試圖將 php 5.3 升級到 php 5.6,但它顯示以下錯誤。

Error: Package: gd-last-2.2.4-1.el6.remi.x86_64 (remi)
               Requires: libwebp.so.5()(64bit)
    You could try using --skip-broken to work around the problem
    You could try running: rpm -Va --nofiles --nodiges

遵循以下步驟。

如果您還沒有這樣做,請安裝 Remi 和 EPEL 儲存庫

wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-6.noarch.rpm && rpm -Uvh epel-release-latest-6.noarch.rpm



wget http://rpms.famillecollet.com/enterprise/remi-release-6.rpm && rpm -Uvh remi-release-6*.rpm

全域啟用 REMI 儲存庫:

nano /etc/yum.repos.d/remi.repo

在看起來像的部分下

$$ remi $$進行以下更改:

[remi]
name=Remi's RPM repository for Enterprise Linux 6 - $basearch
#baseurl=http://rpms.remirepo.net/enterprise/6/remi/$basearch/
mirrorlist=http://rpms.remirepo.net/enterprise/6/remi/mirror
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi

此外,在看起來像的部分下

$$ remi-php55 $$進行以下更改:

[remi-php56]
name=Remi's PHP 5.6 RPM repository for Enterprise Linux 6 - $basearch
#baseurl=http://rpms.remirepo.net/enterprise/6/php56/$basearch/
mirrorlist=http://rpms.remirepo.net/enterprise/6/php56/mirror
# WARNING: If you enable this repository, you must also enable "remi"
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-remi
           Requires: libwebp.so.5()(64bit)

這是由 EPEL 中的 libwebp-0.4.3-3.el6.x86_64 提供的。檢查您是否沒有來自另一個 3rd 方儲存庫的另一個版本。

PS 還注意到 CentOS 6.2 沒有維護,6.9 是目前版本。

引用自:https://serverfault.com/questions/856192