独显驱动
如果你的英特尔独立显卡是集成在CPU上的,那么只需要安装 Intel 集成显卡驱动就可以了。如果是英特尔的独立显卡,可以按照以下步骤安装驱动:
打开终端,使用
lspci
命令确定你的显卡型号,例如:$ lspci | grep VGA 00:02.0 VGA compatible controller: Intel Corporation 4th Gen Core Processor Integrated Graphics Controller (rev 06)
确定安装的驱动版本。你可以参考英特尔官方网站上公布的驱动版本信息,以确认你需要哪个版本的驱动。
添加英特尔下载中心源:
Ubuntu 20.04用户:
sudo apt-get install intel-microcode
Ubuntu 18.04用户:
sudo add-apt-repository ppa:ubuntu-x-swat/updates sudo apt-get update sudo apt-get dist-upgrade
安装 graphics-driver 包:
sudo apt-get install intel-graphics-driver
安装完成后,重启系统:
sudo reboot
安装完成后,你就可以检查你的显卡是否正常工作了。你可以在终端输入 glxinfo | grep OpenGL
命令查看 OpenGL 的信息。如果没有问题,将会显示类似于以下的信息:
OpenGL vendor string: Intel Open Source Technology Center
OpenGL renderer string: Mesa DRI Intel(R) HD Graphics 5500 (Broadwell GT2)
OpenGL core profile version string: 4.6 (Core Profile) Mesa 20.1.8
OpenGL core profile shading language version string: 4.6
OpenGL core profile context flags: (none)
OpenGL core profile profile mask: core profile
OpenGL version string: 4.6 (Compatibility Profile) Mesa 20.1.8
OpenGL shading language version string: 4.6
OpenGL context flags: (none)
OpenGL profile mask: compatibility profile