apt-get update/install 不起作用

apt-get update/install 不起作用

Ubuntu 19.04

这种情况已经持续了一段时间。每当我运行 apt-get update 或 install 时,都不起作用。

sudo apt-get update
Err:1 http://ca.old-releases.ubuntu.com/ubuntu disco InRelease
  Could not resolve 'ca.old-releases.ubuntu.com'
Err:2 http://ca.old-releases.ubuntu.com/ubuntu disco-updates InRelease                                                 
  Could not resolve 'ca.old-releases.ubuntu.com'
Err:3 http://ca.old-releases.ubuntu.com/ubuntu disco-backports InRelease                                               
  Could not resolve 'ca.old-releases.ubuntu.com'
Hit:4 http://dl.google.com/linux/chrome/deb stable InRelease                                                           
Hit:5 https://dl.yarnpkg.com/debian stable InRelease                                                                   
Hit:6 https://download.docker.com/linux/ubuntu disco InRelease                                                         
Hit:7 http://ppa.launchpad.net/ondrej/php/ubuntu disco InRelease                                      
Hit:8 http://old-releases.ubuntu.com/ubuntu disco-security InRelease
Reading package lists... Done
W: Failed to fetch http://ca.old-releases.ubuntu.com/ubuntu/dists/disco/InRelease  Could not resolve 'ca.old-releases.ubuntu.com'
W: Failed to fetch http://ca.old-releases.ubuntu.com/ubuntu/dists/disco-updates/InRelease  Could not resolve 'ca.old-releases.ubuntu.com'
W: Failed to fetch http://ca.old-releases.ubuntu.com/ubuntu/dists/disco-backports/InRelease  Could not resolve 'ca.old-releases.ubuntu.com'
W: Some index files failed to download. They have been ignored, or old ones used instead.

我一直在寻找答案,但没有任何效果。我认为我需要更新 Ubuntu,但每当我尝试使用软件中心等进行更新时,它都找不到任何东西。
当我尝试打开软件更新程序时,它只是说无法下载存储库信息。

我可以更新我的发行版,但我不知道该怎么做。我有备份,所以不必太担心。

我知道自从我安装 ubuntu 以来,我收到了有关未找到软件包的通知。但我一直在尝试设置 glfw,而与 ubuntu 软件包完全匹配的软件包却显示未找到。

这里需要做什么?谢谢。

答案1

我认为旧版本没有本地国家镜像,您可以尝试主镜像。

sudo sed -i.bak 's/ca.old-/old-/g' /etc/apt/sources.list
sudo apt update

您应该升级到受支持的版本,目前是 Ubuntu 19.10 和最新的 20.04 LTS。

相关内容