我使用了 Ubuntu Bionic。除其他外,我还配置了以下 apt 源
deb https://mkvtoolnix.download/ubuntu/bionic/ ./
deb-src https://mkvtoolnix.download/ubuntu/bionic/ ./
当我apt-get update
在这个 repo 上失败时,告诉我:
E: The repository 'https://mkvtoolnix.download/ubuntu/bionic ./ Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.
我浏览了一下,找到了一个建议使用apt-get update --allow-insecure-repositories
,但这只是改变了我收到的错误消息并没有解决问题。
帮助?
答案1
似乎存储库的结构在某个时候发生了变化。将这两行替换为以下内容:
deb https://mkvtoolnix.download/ubuntu/ bionic main
deb-src https://mkvtoolnix.download/ubuntu/ bionic main
这应该能让您满意apt-get
并允许您更新。