web-dev-qa-db-ja.com

Ubuntu 12.04でのgccのインストールエラー

Ubuntuマシンにgccをインストールしたいのですが、次のエラーが発生しました。

   t@lab45:~# apt-get install build-essential
    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:
     build-essential : Depends: libc6-dev but it is not going to be installed or                        
                                libc-dev 
                       Depends: gcc (>= 4:4.4.3) but it is not going to be installed           
                       Depends: g++ (>= 4:4.4.3) but it is not going to be installed
                       Depends: make but it is not going to be installed
                       Depends: dpkg-dev (>= 1.13.5) but it is not going to be installed
     linux-image-generic-pae : Depends: linux-image-3.2.0-37-generic-pae but it is not going to be installed
    E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

問題は buntu 12.04 LTSにgccをインストール に似ていますが、そこにある解決策は実行できません。

これに対処する方法は?ありがとう!

2
user138126

sources.listファイルでmainアーカイブをアクティブにして、保留中のパッケージがないことを確認する必要があります。

Sudo apt-get update
Sudo apt-get clean
grep -P 'main&precise-updates' /etc/apt/sources.list
## Here should return something like deb http://ubuntu.mirror.cambrium.nl/ubuntu/ precise-updates main
echo $(dpkg --get-selections | grep hold | awk '{print $1}') install | Sudo dpkg --set-selections
Sudo apt-get upgrade
Sudo apt-get --fix-missing install build-essentials

これにより、インストールに問題はありません。

1
Braiam