嘗試運行sudo apt-get update
甚至只是sudo apt update
導致我得到以下輸出:
Hit:1 http://us.archive.ubuntu.com/ubuntu focal InRelease
Hit:2 http://dl.google.com/linux/chrome/deb stable InRelease
Hit:3 http://us.archive.ubuntu.com/ubuntu focal-updates InRelease
Hit:4 http://us.archive.ubuntu.com/ubuntu focal-backports InRelease
Hit:5 http://us.archive.ubuntu.com/ubuntu focal-security InRelease
Hit:6 http://ppa.launchpad.net/hvr/ghc/ubuntu focal InRelease
Hit:7 https://packages.microsoft.com/ubuntu/19.10/prod eoan InRelease
Ign:8 https://anonscm.debian.org/git/collab-maint/pcsc-lite.git focal InRelease
Err:9 https://anonscm.debian.org/git/collab-maint/pcsc-lite.git focal Release
404 Not Found [IP: 2001:648:2ffc:deb::211:202 443]
Reading package lists... Done
E: The repository 'https://anonscm.debian.org/git/collab-maint/pcsc-lite.git focal 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.
我嘗試點擊https://anonscm.debian.org/git/collab-maint/pcsc-lite.git鏈接,然後縮短網址,直到 anonscm.debian.org 將我帶到這個奇怪的頁面其中談到如何停止某個 Debian 服務。然而,我是一個 Linux 初學者,我不會陷入可能進一步破壞我的環境的兔子洞,我真的很感謝一些關於如何解決這個問題的幫助。任何幫助將不勝感激。
編輯是的。我已連接到網路。
第二次編輯:是的。我已連接並且我的實時補丁已開啟 如你看到的
第三次編輯不知何故,在關閉第二張圖片中的設定後,軟體更新程式決定運行。這就像我apt-get update
在終端機中運行一樣,不是嗎?但為什麼它在終端中不起作用?
答案1
您似乎有一個(現在)無效的 URL 作為儲存庫。
打開終端並切換到 root。 ( sudo -i
)
然後做
cd /etc/apt/
grep -lris anonscm.debian.org
然後打開列印有您最喜歡的文字的文件,例如nano /your/file/here.list
搜尋類似的行
deb https://anonscm.debian.org/git/collab-maint/pcsc-lite.git focal Release
刪除該行。然後儲存退出
在奈米中,這將是
ctrl + X
>>y
<ENTER>
然後再試apt update && apt upgrade
一次。