我使用的是 Ubuntu Bionic。除此之外,我配置了以下 apt 來源
deb https://mkvtoolnix.download/ubuntu/bionic/ ./
deb-src https://mkvtoolnix.download/ubuntu/bionic/ ./
當我apt-get update
,它在這個回購上失敗,告訴我:
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
並讓你更新。