web-dev-qa-db-ja.com

追加されたリポジトリを手動で削除/削除する方法は?

私を助けてください:このリポジトリを手動で追加しましたが、削除できません

echo 'deb http://download.opensuse.org/repositories/home:/Horst3180/Debian_8.0/ /' > /etc/apt/sources.list.d/vertex-theme.list

wget http://download.opensuse.org/repositories/home:Horst3180/Debian_8.0/Release.key

私はapt-key listを使用してキーを削除してからIDを使用して削除しようとしましたが、キーを正常に削除しましたが、apt updateを使用するとこの出力が得られます:

W: GPG error: http://download.opensuse.org/repositories/home:/Horst3180/Debian_8.0  Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 5A7D1D38BEB6D886
E: The repository 'http://download.opensuse.org/repositories/home:/Horst3180/Debian_8.0  Release' is not signed.
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.

OSの新規インストールが行われたときのように、通常apt updateを実行できるようにしたいだけです。

1
Carlos Rojas

作成された.listファイルを削除するだけです:

Sudo rm /etc/apt/sources.list.d/vertex-theme.list
Sudo rm /etc/apt/sources.list.d/vertex-theme.list.save

その後、実行して更新し、場合によってはdistをアップグレードした後:

Sudo apt update
Sudo apt dist-upgrade

すでにキーを削除しているので、これ以上することはありません。

1
Videonauth