i965_dri.so の代わりに、crocus_dri.so を指定すると intel ドライバが使えます。crocus_dri.so は i965_dri.so の後継です。ビデオチップによっては、iris_dri.so が適合します。thinkpadnerd さんが書きました: ↑24/12/15(日) 17:53 Scarthgap, Daedalus とも i965_dri.so が含まれていません。これは最近の Linux の流れらしいのですが、intel haswell の場合、ビデオドライバ intel を指定すると、i965_dri.so がない、とエラーを返します。(Xorg.0.log で確認)
まず、intel ドライバの指定。xorg.conf を直接書き換えるのではなく、
/etc/X11/xorg.conf.d/20-gpu-intel.confSNA
を
20-gpu-intel.conf
にリネームします。
次に、dri ドライバ "crocus" を指定します。
20-gpu-intel.conf を編集。
コード: 全て選択
Section "Device"
Identifier "intel"
Driver "intel"
Option "AccelMethod" "sna" #intelaccelmethod
#Option "TearFree" "true"
#Option "DRI" "3"
Option "DRI" "crocus"
EndSection
X を再起動して設定を反映させます。
Scarthgap でも同じ設定が使えます。