Introduction

良くあるネタの備忘録。
NVIDIAのディスプレイドライバーをインストールする際に、エラーになる。
具体的には、

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$ cat /var/log/cuda-installer.log
[INFO]: Driver not installed.
[INFO]: Checking compiler version...
[INFO]: gcc location: /usr/bin/gcc

[INFO]: gcc version: gcc version 7.5.0 (Ubuntu 7.5.0-3ubuntu1~18.04)

[INFO]: Initializing menu
[INFO]: Setup complete
[INFO]: Components to install:
[INFO]: Driver
[INFO]: 460.27.04
[INFO]: Executing NVIDIA-Linux-x86_64-460.27.04.run --ui=none --no-questions --accept-license --disable-nouveau --no-cc-version-check --install-libglvnd 2>&1
[INFO]: Finished with code: 256
[ERROR]: Install of driver component failed.
[ERROR]: Install of 460.27.04 failed, quitting

のようなエラーが出る。

What is a problem?

デフォルトのディスプレイドライバーである nouveau が悪さをしているので、コレを無効化してインストールする。

/etc/modprobe.d/blacklist-nouveau.conf を作成し、下記を記載。

1
2
blacklist nouveau
options nouveau modeset=0

記載後、カーネルモジュールを再読込し、再起動

1
2
$ sudo update-initramfs -u
$ sudo reboot

これでインストールが成功する。