
Ubuntu日本語フォーラム

ログインしていません。
お疲れ様です。
今回、NVIDIA GEFORCE GTX 950Mを認識させるためにドライバインストールに試みましたが
エラーの対処ができずに手詰まりになっております。
お力を貸していただけると幸いです。
ttp://blog.livedoor.jp/tsuchiyano/archives/52183842.html
上記のサイトを参考にさせていただきながら作業を進めていたのですが
コンソールモードからインストールを実行し、EULAに同意→コンティニューの後
エラー文が吐き出されたので困っています。
【実行ファイル】
NVIDIA-Linux-x86_64-384.98.run
【エラー内容】
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 proceedirng. Please consult the NVIDIA driver README and your Linux distribution's
documentation for details on how to correctly disable the Nouveau kernel driver.
ERROR: 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
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.
以上です。
何分、英語にも弱くLinuxも勉強中の為
教えていただけると幸いです。
よろしくお願いいたします。
オフライン
最初のエラー内容を機械翻訳すると以下の内容になります。
エラー:現在、ヌーボーのカーネルドライバが使用されています。このドライバはNVIDIAドライバと互換性がありません。進行する前に無効にする必要があります。
Nouveauカーネルドライバを正しく無効にする方法の詳細については、NVIDIAドライバのREADMEおよびLinuxディストリビューションのドキュメントを参照してください。
なのでnouveaドライバを無効にする必要があります。
https://askubuntu.com/questions/841876/how-to-disable-nouveau-kernel-driver
ここではcudaのインストール時の話なので同じかどうかわかりませんが、解決した(nouveauを無効にできた)とあるのでそれを抜粋すると
$ sudo nano /etc/modprobe.d/blacklist-nouveau.conf
/etc/modprobe.d/blacklist-nouveau.confを新規作成します。nanoは好きなエディタに読替えてください。
中身は以下の2行です。
blacklist nouveau
options nouveau modeset=0
$ sudo update-initramfs -u
カーネルを再構成(再生性?)するようです。
$ sudo reboot
再起動
役に経ちますかね?
オフライン