sudo apt update 时出现错误消息

sudo apt update 时出现错误消息

自从我安装了鲸鱼浏览器后,每次我输入“sudo apt update”时都会出现错误消息。这是怎么回事?有什么好的解决办法吗?直接忽略它?

编辑:我正在使用 ubuntu 20.04,错误消息被省略。错误消息:

Failed to fetch https://repo.whale.naver.com/stable/deb/dists/stable/InRelease  Could not connect to repo.whale.naver.com:443 (125.209.218.142). - connect (111: Connection refused)
W: Some index files failed to download. They have been ignored, or old ones used instead.

这是源文件。

### THIS FILE IS AUTOMATICALLY CONFIGURED ### 
# You may comment out this entry, but any other modifications may be lost.
deb [arch=amd64] https://repo.whale.naver.com/stable/deb stable main

答案1

问题在于您使用的是 https,而该网站需要 http。Apt 通常不使用 https,而是通过对软件包进行签名来使用不同的安全方法。

运行以下命令来修复该问题(使用 编辑文件sed):

sudo sed -i 's|https://repo.whale|http://repo.whale|g' /etc/apt/sources.list.d/naver-whale.list

然后运行 ​​apt update:

sudo apt update

并且不要忘记升级:

sudo apt upgrade

或者

sudo apt dist-upgrade

包括内核更新。

相关内容