當我嘗試使用 sudo apt-get update 更新 Ubuntu 17.10 系統時,我收到以下其中一個儲存庫的錯誤:
Err:9 http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu artful Release
404 Not Found
E: The repository 'http://ppa.launchpad.net/ubuntu-desktop/ubuntu-make/ubuntu artful Release' does not have a Release file.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
我無法追蹤/etc/apt/sources.list
或/etc/apt/sources.list.d
最近發現了此問題的存儲庫。誰能告訴我如何找到這個存儲庫並禁用或刪除它?由於此錯誤,我無法更新我的系統。謝謝
答案1
提到的儲存庫沒有任何 artful (17.10) 的包,這會導致 404。
您應該能夠從軟體和更新設定 GUI 中執行此操作,或者找到提及它的來源清單檔案並刪除或註釋該行。
正如您所說,您無法找到它,請嘗試:
grep -r --include "*.list" "^deb" /etc/apt/sources.list* | grep "ubuntu-make"
這應該會顯示檔案名稱、行號以及配置此 PPA 的行的內容。