Rocky Linux 9.4 intel driver i915

Hi I can’t find the intel driver i915 in my /usr/lib64/dri folder, where can I download it? The llvmpipe graphics is not working properly with some apps. Thank you

Because it’s a kernel module, and thus can be found under /lib/modules:

[root@rocky9 ~]# find /lib/modules -iname i915*

/lib/modules/5.14.0-427.20.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915
/lib/modules/5.14.0-427.20.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915/i915.ko.xz
/lib/modules/5.14.0-427.22.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915
/lib/modules/5.14.0-427.22.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915/i915.ko.xz
/lib/modules/5.14.0-427.24.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915
/lib/modules/5.14.0-427.24.1.el9_4.x86_64/kernel/drivers/gpu/drm/i915/i915.ko.xz

if you want or need to load it:

modprobe i915

or check to see if it’s loaded already:

lsmod | grep -i i915

Thank you, I found the module where you wrote and it’s loaded but I still see llvmpipe (LLVM 17.0.6, 256 bits) in graphics. Is it normal with an Intel integrated graphic card?

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.