Linux

更新 yum 失敗

  • April 16, 2019

我正在使用centOS 6.4。

當我在終端視窗中使用“yum update”時出現此錯誤。

Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os error was
14: PYCURL ERROR 6 - "Couldn't resolve host 'mirrorlist.centos.org'"
Error: Cannot find a valid baseurl for repo: base

是否有任何用於升級的替代鏡像?

我一直在 Centos6.4 x86_64 上遇到同樣的問題。我收到以下錯誤:

Could not retrieve mirrorlist http://mirrorlist.centos.org/?release=6&arch=x86_64&repo=os error was 14: PYCURL ERROR 6 - "Couldn't resolve host 'mirrorlist.centos.org'" Error: Cannot find a valid baseurl for repo: base

所以,我通過以下步驟修復了它:

編輯網路介面。對於我的情況,我使用了eth0.

vim /etc/sysconfig/network-scripts/ifcfg-eth0

將 NM_CONTROLLED更新為no

ONBOOT=no
NM_CONTROLLED=no
BOOTPROTO=dhcp
DNS1=8.8.8.8
DNS2=4.2.2.2

重啟網路介面

ifdown eth0
ifup eth0

我在 CentOS 上發布了相同的答案:如何修復“無法找到有效的 repo 的 baseurl”錯誤?

引用自:https://unix.stackexchange.com/questions/113620