当我运行软件更新程序时,收到一条错误消息
无法下载存储库信息,请检查您的互联网连接。
内容如下:
W:The repository 'http://ppa.launchpad.net/upubuntu-com/icons/ubuntu xenial Release' does not have a Release file.
W:Data from such a repository can't be authenticated and is therefore potentially dangerous to use.
W:See apt-secure(8) manpage for repository creation and user configuration details.
E:Failed to fetch http://ppa.launchpad.net/upubuntu-com/icons/ubuntu/dists/xenial/main/source/Sources 404 Not Found,
E:Some index files failed to download. They have been ignored, or old ones used instead.
答案1
您添加的 PPA,ppa:upubuntu-com/icons
,不支持 Ubuntu 16.04。正如你所看到的他们支持的版本列表,最后支持的版本是wily
,或 Ubuntu 15.10。
您需要删除该 PPA 或尝试将其设置为使用wily
而不是xenial
。通过运行 找出哪个文件包含该 PPA fgrep upubuntu-com /etc/apt/sources.list /etc/apt/sources.list.d/*
,然后从那里继续。
如果该条目出现在文件中/etc/apt/sources.list
,则可以通过运行sudo nano /etc/apt/sources.list
、找到该upubuntu-com
行并更改xenial
或wily
删除该行来编辑该文件。
如果条目出现在 下的文件中/etc/apt/sources.list.d
,您可以删除该文件或使用sudo nano file-path
并更改xenial
为 对其进行编辑wily
。
完成后,sudo apt update
再次运行。