我安装了这个程序来过滤内容。它不太方便用户使用,我想彻底删除它。我在 Ubuntu 12.04 上通过软件管理器安装和删除它。
当我这样做时,我收到红色三角形警告sudo apt-get update
,它指的是这个包。
从消息中删除了 http:。这样我就无法发表回复了。
W: GPG error: //packages.osrfoundation.org precise Release: The following >signatures couldn't be verified because the public key is not available: NO_PUBKEY >C4D0E34E9443F10F
W: Failed to fetch //ppa.launchpad.net/webcontentcontrol/webcontentcontrol/ubuntu/dists/precise/main/source/Sources 404 Not Found
W: Failed to fetch ://ppa.launchpad.net/webcontentcontrol/webcontentcontrol/ubuntu>/dists/precise/main/binary-i386/Packages 404 Not Found
E: Some index files failed to download. They have been ignored, or old ones used instead.
答案1
该命令sudo apt-get update
不是删除软件的方法,而是重新读取存储库以查看已安装软件是否有新版本。您收到的特定错误意味着您没有该特定存储库的相应密钥,而且计算机似乎根本找不到 ppa。这些问题很容易解决,但这不是您的问题所在。
您要求您将其删除,因此您必须发出以下命令:
sudo apt-get remove --purge webcontentcontrol
如果您想解决丢失密钥的问题,请打开终端并输入以下内容:
$ keymissing=C4D0E34E9443F10F && \
gpg --keyserver wwwkeys.eu.pgp.net --recv-keys $keymissing && \
gpg --armor --export $keymissing | apt-key add - && apt-get update