NVIDIA社最新のLinux用ドライバには NVIDIA-Prime機能があり
常時NVIDIA GPUを使用するような使い方ができる。
bumblebeeのような面倒な導入の必要がない代りに、Intel VGAの機能は使うことができなくなる。
導入の方法は、普通に
# sh NVIDIA-Linux-・・・.run
を実行してドライバを導入して、下記のxorg.confを /etc/X11/xorg.conf として保存。
(内容はそれぞれのPC仕様により変わるはず)
----- >8 ------ >8 ----- >8 ------ >8
Section "ServerLayout"
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce 940MX"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection
Section "Device"
Identifier "intel"
Driver "modesetting"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
----- >8 ------ >8 ----- >8 ------ >8
Identifier "layout"
Screen 0 "nvidia"
Inactive "intel"
EndSection
Section "Device"
Identifier "nvidia"
Driver "nvidia"
VendorName "NVIDIA Corporation"
BoardName "GeForce 940MX"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "nvidia"
Device "nvidia"
Option "AllowEmptyInitialConfiguration"
EndSection
Section "Device"
Identifier "intel"
Driver "modesetting"
EndSection
Section "Screen"
Identifier "intel"
Device "intel"
EndSection
----- >8 ------ >8 ----- >8 ------ >8