web-dev-qa-db-ja.com

Ubuntu 14.04:nvidiaドライバーをインストールできません

NVidiaカードを搭載したAsusラップトップを使用しています。 lspciは私に言う:

01:00.0 VGA compatible controller: NVIDIA Corporation GF119M [GeForce 610M] (rev a1)

Ubuntu 14.04 LTS(64ビット版)を新規インストールしました。

デフォルトでは、Ubuntu 14.04はnouveauドライバーを使用しますが、非常にうまく機能しない(カーソルの点滅、3Dディスプレイの低速化など)ので、独自のnvidiaドライバーをインストールしたいと思います。

[システム設定]> [ソフトウェアと更新]> [追加ドライバー]に移動します。 Ubuntuは私に次のオプションを提案します:

Additional Drivers options

何を選択しようとしても(Nouveau以外)、[APply Changes]をクリックした後、追加のフィードバックなしでNouveauに戻ります...

だから私はaptでドライバーを手動でインストールしようとしました:

$ Sudo apt-get install nvidia-331
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 nvidia-331 : Depends: lib32gcc1 but it is not going to be installed
              Depends: libc6-i386 but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

上記のパッケージを手動でインストールしようとすると、次のエラーが表示されます。

$ Sudo apt install lib32gcc1 libc6-i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libc6-i386 : Depends: libc6 (= 2.19-0ubuntu5) but 2.19-0ubuntu6 is to be installed
E: Unable to correct problems, you have held broken packages.

これを修正するにはどうすればよいですか?

また、それはバグだと思いますか? (もしそうなら、私はLaunchpadでそれを上げます)

前もって感謝します!

9
Pierre

使用されている更新サーバー(台湾)が最新ではないようで、依存関係が満たされていないなどの問題が発生しているようです。

これを修正するために、[システム設定]> [ソフトウェアと更新]> [Ubuntuソフトウェア]に移動し、[ダウンロード元:メインサーバー]を選択しました(以前は[ダウンロード元:Server for Taiwan]でした)

独自のドライバーをインストールできるようになりました。

7
Pierre

私も同じエラーメッセージを経験しました。私の場合、aptキャッシュが破損/古いためでした。

そのため、同じエラーが発生した場合は、パッケージ定義が最新であることを確認してください。

apt-get update && apt-get install nvidia-331
0
Joyce Babu