もはや存在しないパッケージのソースを見つける方法は?

もはや存在しないパッケージのソースを見つける方法は?

sudo apt-get updateDebian Bullseyeインストールでこれを実行するたびに失敗します。

Ign:3 http://ftp.utexas.edu/dotdeb stable InRelease
Ign:3 http://ftp.utexas.edu/dotdeb stable InRelease
Err:3 http://ftp.utexas.edu/dotdeb stable InRelease
  Could not resolve 'ftp.utexas.edu'
Fetched 7,491 B in 8s (922 B/s)
Reading package lists... Done
W: Failed to fetch http://ftp.utexas.edu/dotdeb/dists/stable/InRelease  Could not resolve 'ftp.utexas.edu'
W: Some index files failed to download. They have been ignored, or old ones used instead.

何もインストールした記憶がありませんftp.utexas.edu。インストールしたパッケージにこのソースがあるかどうかはどうすればわかりますか?

また、このエラーをどのように解決できますか?

追加情報:これは私の現在です/etc/apt/sources.list

deb http://deb.debian.org/debian bullseye main contrib non-free
deb-src http://deb.debian.org/debian bullseye main contrib non-free

deb http://deb.debian.org/debian-security/ bullseye-security main contrib non-free
deb-src http://deb.debian.org/debian-security/ bullseye-security main contrib non-free

deb http://deb.debian.org/debian bullseye-updates main contrib non-free
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free

ベストアンサー1

Debianベースのシステムは、利用可能なリポジトリをデフォルトファイル/etc/apt/sources.listまたはディレクトリの下の個々のファイルに保存します/etc/apt/sources.list.d。したがって、このコマンドは、探しているリポジトリを参照するファイルを表示する必要があります。

sudo grep -R ftp.utexas.edu /etc/apt/sources.list /etc/apt/sources.list.d/

その後、関連ファイルを編集し、このリポジトリを参照する行を削除したり、ファイルに存在するすべてのコンテンツがある場合は、ファイルを完全に削除できます。その後、実行するとクリーンなsudo updateストレージセットが作成されます。

おすすめ記事