Intel Graphics – Intel HD Graphics Card Not Recognized in System Info intel graphicssystem-info When I check the info of my laptop, it shows me "Graphics Unknown": Can anyone help me resolve this? Best Answer It means that it cannot acquire the information because glxinfo is not installed on the system. You can install mesa-utils with the Software Center: Or by typing in terminal: sudo apt-get install mesa-utils Related SolutionsUbuntu – Switch from NVidia to internal Intel HD graphics – OpenGL does not work You need to remove the nvidia drivers so that the driver does not try to get itself loaded instead of your Intel card. Normally no further installation of drivers is required for the Intel built in driver but if the nVidia driver is getting loaded it will take over. sudo apt-get purge nvidia* Remove your xorg.conf sudo rm /etc/X11/xorg.conf Reinstall xorg completely sudo apt-get install --reinstall xserver-xorg-core libgl1-mesa-glx:i386 libgl1-mesa-dri:i386 libgl1-mesa-glx:amd64 libgl1-mesa-dri:amd64 Re-configure Xorg sudo dpkg-reconfigure xserver-xorg Reboot sudo reboot Ubuntu – Intel Graphics card not seen by ubuntu 18.04 I have Lenovo Legion Y540 and I faced the same problem. To fix this there was a option in my BIOS to change from discrete graphic to switchable graphics and that the did the trick for me. Related QuestionUbuntu – Switch from NVidia to internal Intel HD graphics – OpenGL does not workUbuntu – Intel Graphics card not seen by ubuntu 18.04
Best Answer
It means that it cannot acquire the information because
glxinfo
is not installed on the system.You can install mesa-utils with the Software Center:
Or by typing in terminal: