在 Ubuntu 12.10 下载更新时遇到问题

在 Ubuntu 12.10 下载更新时遇到问题

我的菜单栏上方有一个错误图标。单击它时,我得到了三个选项和一些详细信息。它说

An error occurred please run package manager from the right-click menu or apt-get in terminal to see what's wrong.
The error message was: 'Error:brokencount>0'.
This usually means that your installed packages have unmet dependencies"

我尝试apt-get在终端中使用命令和选项

See the apt-get(8), sources.list(5) and apt.conf(5) manual pages for more information and options. This APT has Super Cow Powers.

当我尝试更新系统时,更新失败并显示以下错误消息:

The package is broken

The following packages have unmet dependencies:
steam-launcher: Depends: curl but it is not installed
                Depends: jockey-common but it is not installed
                Depends: libc6 (>= 2.15) but 2.15-0ubuntu20 is installed

答案1

在终端尝试:

sudo apt-get update
sudo apt-get autoclean
sudo apt-get autoremove
sudo apt-get -f dist-upgrade

它应该更新软件包列表,删除任何不必要的软件包,修复损坏的软件包并管理依赖关系。

答案2

sudo apt-get 安装 steam-launcher 此命令应安装 steam-launcher 和所需的依赖项。如果问题仍然存在,也许您可​​以尝试使用 sudo apt-get install -f steam-launcher

相关内容