yum
自从升级到 Fedora 22 以来,我在通过终端进行更新时遇到了问题。每当我运行sudo yum update
命令时,每次都会发生这种情况:
怎么了?我该怎么做才能解决这个问题?
答案1
在 /etc/yum.repos.d 目录中搜索 https 存储库 - 通常存储库配置为使用 http(这是安全的,因为所有软件包都已签名)。如果 http 存储库具有 http 等效项,请禁用它们。
您也可以执行(以 root 身份):
update-ca-trust
这可能会或可能不会有帮助,具体取决于存储库服务器配置 - 上述错误不能 100% 确定其配置没有被破坏。
答案2
您正在尝试在 Fedora 22 上使用 yum,但该版本不再受支持,请使用 yumex-dnf 或采用“新”的正确方法 sudo dnf update
sudo dnf clean all
sudo dnf update
sudo OR su -c 'update-ca-trust' ## only run if the dnf update fails to update it in the previous step.. Also check for drops in connectivity as the second error can also happen with landing pages and spotty connects...