2019/11/12(火)nvidiaのドライバが動いていない
FreeBSD12 に色々インストールした
https://hesy.dyndns.dk/047
しかし実際にはうまく動いていなかったのでその記録。
環境
AMD Athlon64 X2 4200+GeForce 7050 PV / nForce 630a
FreeBSD12.1 (12.0からのアップグレード)
xorg-7.7_3
xfce-4.14
nvidia-driver-304-304.137_4
5.4. Xorg の設定 - 第5章 X Window System
https://www.freebsd.org/doc/ja_JP.eucJP/books/handbook/x-config.html現状調査
FreeBSDハンドブックによれば、設定ファイル xorg.conf は不要で自動で起動するという。実際に上記環境で設定をしたので起動すると xfce4の画面が映る。
しかし、画面がぼやけていて映りが悪い。
そこでログファイルXorg.0.log をみてみた。
$ grep nvidia /var/log/Xorg.0.logどうやらnvidiaドライバを読み込んでいない。
ログファイルの一部分を抜き出すと次のようになっていた。
$ cat /var/log/Xorg.0.log | head -64 | tail -41 [ 14.933] (==) --- Start of built-in configuration --- [ 14.933] Section "Device" [ 14.933] Identifier "Builtin Default nv Device 0" [ 14.933] Driver "nv" [ 14.933] EndSection [ 14.933] Section "Screen" [ 14.933] Identifier "Builtin Default nv Screen 0" [ 14.933] Device "Builtin Default nv Device 0" [ 14.933] EndSection [ 14.933] Section "Device" [ 14.933] Identifier "Builtin Default modesetting Device 0" [ 14.933] Driver "modesetting" [ 14.933] EndSection [ 14.933] Section "Screen" [ 14.933] Identifier "Builtin Default modesetting Screen 0" [ 14.933] Device "Builtin Default modesetting Device 0" [ 14.933] EndSection [ 14.933] Section "Device" [ 14.933] Identifier "Builtin Default scfb Device 0" [ 14.933] Driver "scfb" [ 14.933] EndSection [ 14.933] Section "Screen" [ 14.933] Identifier "Builtin Default scfb Screen 0" [ 14.933] Device "Builtin Default scfb Device 0" [ 14.933] EndSection [ 14.933] Section "Device" [ 14.933] Identifier "Builtin Default vesa Device 0" [ 14.933] Driver "vesa" [ 14.933] EndSection [ 14.933] Section "Screen" [ 14.933] Identifier "Builtin Default vesa Screen 0" [ 14.933] Device "Builtin Default vesa Device 0" [ 14.933] EndSection [ 14.933] Section "ServerLayout" [ 14.933] Identifier "Builtin Default Layout" [ 14.933] Screen "Builtin Default nv Screen 0" [ 14.933] Screen "Builtin Default modesetting Screen 0" [ 14.933] Screen "Builtin Default scfb Screen 0" [ 14.933] Screen "Builtin Default vesa Screen 0" [ 14.933] EndSection [ 14.933] (==) --- End of built-in configuration ---nvを読み込もうとして失敗していた。
$ cat /var/log/Xorg.0.log | head -110 | tail -5 [ 18.400] (II) LoadModule: "nv" [ 18.411] (WW) Warning, couldn't open module nv [ 18.411] (II) UnloadModule: "nv" [ 18.411] (II) Unloading nv [ 18.411] (EE) Failed to load module "nv" (module does not exist, 0)
そこでnvidiaドライバを使うように設定ファイルを書いた。
$ cat /usr/local/etc/X11/xorg.conf.d/driver-nvidia.conf Section "Device" Identifier "Card0" Driver "nvidia" EndSectionこのファイルは次のコマンドでコンフィグファイルを生成し一部分を抜き出して作った。
# Xorg -configure
ここで再起動をした。
再起動後、ユーザ名とパスワードを入力するもxfceが立ち上がらず、ただ黒い画面が映るのみ。
ログを見るとドライバは読み込まれている模様。
$ cat /var/log/Xorg.0.log | head -61 | tail -9 [ 18.937] (II) LoadModule: "nvidia" [ 18.937] (II) Loading /usr/local/lib/xorg/modules/drivers/nvidia_drv.so [ 19.076] (II) Module nvidia: vendor="NVIDIA Corporation" [ 19.076] compiled for 4.0.2, module version = 1.0.0 [ 19.076] Module class: X.Org Video Driver [ 19.086] (II) NVIDIA dlloader X Driver 304.137 Thu Sep 14 13:47:42 PDT 2017 [ 19.086] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs [ 19.086] (--) Using syscons driver with X support (version 2.0) [ 19.086] (--) using VT number 9ログインはできるようなので、ディスプレイマネージャまでは起動している模様。
xfce4を導入するにあたりハンドブックにある通り.xsessionを作った。
$ echo ". /usr/local/etc/xdg/xfce4/xinitrc" > ~/.xsessionこのあたりに現在の状況の原因が有ると予想。
時間が有るときにまた続きをすることにして、
取り敢えずは設定を戻して(rm /usr/local/etc/X11/xorg.conf.d/driver-nvidia.conf)起動させておくことにした。