卸载 chrome 时出现问题。我遇到了错误,所以我也无法打开 ubuntu 软件中心

卸载 chrome 时出现问题。我遇到了错误,所以我也无法打开 ubuntu 软件中心

先生,我通过输入以下命令安装了 chrome:

sudo add-apt-repository ppa:a-v-shkop/chromium-dev
sudo apt-get update 
sudo apt-get install chromium-browser

然后我收到一个大错误,我无法卸载 chrome。当我打开 ubuntu 软件中心时收到一个错误,它根本没有打开,它说 ubuntu 遇到内部错误。以下是在弹出菜单中显示的错误类型。

Could not initialize the package information

An unresolvable problem occurred while initializing the package information.

Please report this bug against the 'update-manager' package and include the following error message:

'E:Type 'ain' is not known on line 3 in source list /etc/apt/sources.list.d/a-v-shkop-chromium-precise.list'

我尝试使用终端中的清除命令卸载 chrome...但没有任何效果。在终端中:

sudo apt-get purge google-chrome-stable 
[sudo] password for dhinesh: 
Reading package lists... 
Done Building dependency tree
Reading state information... 
Done E: Unable to locate package google-chrome-stable

答案1

您添加的 PPA 不适用于用户,仅供开发人员使用。您不需要 PPA 来安装 chromium-browser,它位于标准存储库中。

您必须删除 PPA。通常,这是通过突触数据包管理器完成的,但我认为您没有安装它,而且您目前无法安装任何东西。

在这种情况下,您可以像这样手动将其删除:

sudo rm /etc/apt/sources.list.d/a-v-shkop-chromium-dev-precise.list

然后清理数据包缓存并再次运行更新:

sudo apt-get clean
sudo apt-get update

那么您可能希望从标准存储库中获取普通的 chromium 浏览器:

sudo apt-get install chromium browser

如果您遇到任何错误,请将其添加到您的问题中

相关内容