web-dev-qa-db-ja.com

Nvidiaドライバーのインストール

ブラックリストに登録してみました Alt+Ctrl+F1 解決策なし:

nvidia-installer log file '/var/log/nvidia-installer.log'
creation time: Mon Jun 17 08:35:25 2013
installer version: 319.23

PATH: /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin

nvidia-installer command line:
    ./nvidia-installer

Using: nvidia-installer ncurses user interface
-> License accepted.
-> Installing NVIDIA driver version 319.23.
-> Running distribution scripts
   executing: '/usr/lib/nvidia/pre-install'...
-> done.
-> The distribution-provided pre-install script failed!  
   Continue installation anyway? (Answer: Yes)

ERROR: The Nouveau kernel driver is currently in use by your system.  This driver is 
incompatible with the NVIDIA driver, and must be disabled before proceeding.  Please 
consult the NVIDIA driver README and your Linux distribution's documentation for 
details on how to correctly disable the Nouveau kernel driver.

WARNING: One or more modprobe configuration files to disable Nouveau are already 
present at: /etc/modprobe.d/nvidia-installer-disable-nouveau.conf.  Please be sure 
you have rebooted your system since these files were written.  If you have rebooted, 
then Nouveau may be enabled for other reasons, such as being included in the system 
initial ramdisk or in your X configuration file.  Please consult the NVIDIA driver 
README and your Linux distribution's documentation for details on how to correctly 
disable the Nouveau kernel driver.

ERROR: Installation has failed.  Please see the file '/var/log/nvidia-installer.log' 
for details.  You may find suggestions on fixing installation problems in the README 
available on the Linux driver download page at www.nvidia.com.
1
Adham

あなたの問題が何なのかよくわかりませんが、Ubuntu用のnvidiaドライバーはSoftware and updatesアプリ(ダッシュを見て)の追加ドライバータブにあります。 enter image description here

これが最良のインストール方法です。また、バージョン3.10は最も安定しているため推奨されます。

1
Mark Kirby

私はnvidia gtx 650を持っていますが、いくつかのnvidiaカードはまだオープンソースドライバーでサポートされています。 6か月前にnvidiaカードをインストールしたとき、メモを作成しました。

次のMAKEからビデオドライバーをインストールする前に、ppa-purgeをインストールしたことを確認してください

次に、xorg-edgersから(Ubuntuで最先端のNVIDIA /最新NVIDIAサポート):
注:使用しているUbuntuのバージョンにかかわらず、クォンタルの代わりに

最新のNVIDIAドライバーを使用するには、このPPAをインストールしました

Sudo add-apt-repository ppa:xorg-edgers/ppa 
Sudo apt-get update
Sudo apt-get install <package name>

nvidia 310ドライバーなどでGTX 650カードをサポートするためにこれらのパッケージをインストールしました。

Sudo apt-fast install nvidia-settings-310 nvidia-310

ubuntuでのディストリビューションアップグレードの前にこれらを削除するか、次のコマンドを実行してbrokenシステムを使用します。

Sudo ppa-purge nvidia-settings-310 nvidia-310 

それらによる注意:

重要なお知らせ-あるリリースから別のリリースにアップグレードしてこのPPAを使用している場合は、必ずppa-purgeをインストールし、すべてのダウングレードに使用してくださいアップグレードの前にこのPPAのパッケージをインストールしないと、システムが壊れます。

0
bmullan