Ubuntu 13.10 64 位依赖项损坏问题

Ubuntu 13.10 64 位依赖项损坏问题

我一直在尝试安装 Google Earth,但遇到了与 lsb-core 相关的依赖问题。当我尝试安装 lsb-core 时,遇到了更多依赖问题。

jacob@jacob-desktop:~$ sudo apt-get install lsb-core
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 google-earth-stable : Depends: ia32-libs but it is not installable
 lsb-core : Depends: lsb-invalid-mta (>= 4.1+Debian11ubuntu4) but it is not going to be installed or
                     mail-transport-agent
            Depends: at
            Depends: m4
            Depends: mailx or
                     mailutils but it is not going to be installed
            Depends: ncurses-term but it is not going to be installed
            Depends: pax
            Depends: alien (>= 8.36) but it is not going to be installed
            Depends: libc6-i386 but it is not going to be installed
            Depends: lib32z1 but it is not going to be installed
            Depends: lsb-security (>= 4.1+Debian11ubuntu4) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

有什么建议吗?

答案1

答案就在你问题的底部。运行:

sudo apt-get update

sudo apt-get -f install

或者

sudo apt-get autoremove

或者

sudo apt-get autoclean

任何适合你的东西。

答案2

在终端上运行这两个命令,

sudo apt-get clean
sudo apt-get -f install

相关内容