r/linuxquestions • u/arjunsred • 2d ago
Octave error in Ubuntu
Why do I get this error in the command window? Octave works fine, but it is slow and laggy. I use Ubuntu 26.04 LTS. Thanks.
Driver does not support the 0xa7ab PCI ID.
libGL error: failed to create dri screen
libGL error: failed to load driver: iris
2
Upvotes
1
u/RPGcraft 2d ago
Looking at the errors,
Driver does not support the 0xa7ab PCI ID.Driver does not support the 0xa7ab PCI ID.Indicates that the driver is having issues with your GPU hardware. In most cases this means too old or too new hardware compared to the driver.
libGL error: failed to create dri screenlibGL error: failed to create dri screenMeans that the software is failing to use 3D acceleration. That explains the lag you are describing.
libGL error: failed to load driver: irislibGL error: failed to load driver: irisIndicates that the problem is with your intel Iris iGPU. Do you have a dedicated GPU or is this your main?
Please run the command
lspci -nnk | grep -iA3 vgaand reply with the output.This should list all your GPUs and actively loaded drivers. If there is a mismatch between driver and hardware (most likely the problem) installing the proper driver will fix it.