実行しようとする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.
クリックしてみましたgit は、以下の URL からダウンロードできます。リンクを張ってURLを短縮するとanonscm.debian.orgにたどり着きましたこの奇妙なページ特定の Debian サービスが廃止される方法について説明しました。しかし、私は Linux 初心者なので、環境をさらに壊してしまうような深い穴に落ち込むのではなく、これについてどうすればよいかについて助けていただければ幸いです。どんな助けでも大歓迎です。
編集 はい。インターネットに接続しています。
インターネットはつながっているのに、アップデーターが接続なしのメッセージを表示するのがわかります
2回目の編集: はい。接続されていてライブパッチはオンになっています ご覧のように
3回目の編集どういうわけか、2 番目の画像のように設定を閉じた後、ソフトウェア アップデーターが実行されることにします。これはapt-get update
、ターミナルで実行した場合と同じですか? しかし、ターミナルではなぜ機能しないのでしょうか?
答え1
リポジトリとして (現在) 無効な URL があるようです。
ターミナルを開いてルートに切り替えます。(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
。