如何在 Ubuntu 17.10 中安装最新的英特尔显卡驱动程序?

Ash*_*jan 12 graphics intel 17.10

我正在尝试此操作但出现错误: installing-intel-graphics-driver-in-ubuntu-16-04

错误信息:

Checking if Intel graphics card available...
  • checking for i915 module in /sys/module
  • i915 module found
Checking if Intel graphics card available... OK
Retrieving information from 01.org...
  • fetching https://download.01.org/gfx/ilg-config.cfg
  • saving to /home/sujan/.ilg-config
  • fetched 1626 bytes
  • fetched 9818 bytes
  • fetched 12301 bytes
  • looking up [Ubuntu artful] configuration
Retrieving information from 01.org... OK
Checking distribution... Failed
Run Code Online (Sandbox Code Playgroud)

Tom*_*art 9

到目前为止,英特尔不提供对 Ubuntu 17.10 的支持。我正在使用来自ppa:oibaf/graphics-drivers2 个外部显示器的更新驱动程序,到目前为止集成显卡没有任何问题:

$ lspci -nnk | grep -iA2 vga 
00:02.0 VGA compatible controller [0300]: Intel Corporation HD Graphics 630 [8086:5912] (rev 04)
        Subsystem: ASRock Incorporation HD Graphics 630 [1849:5912]
        Kernel driver in use: i915
Run Code Online (Sandbox Code Playgroud)

您可以从 PPA 存储库安装更新和优化的开放图形驱动程序

sudo add-apt-repository ppa:oibaf/graphics-drivers
sudo apt update
sudo apt upgrade -y
Run Code Online (Sandbox Code Playgroud)


Luk*_*uka 5

暂时改成/etc/lsb-release对应Zesty Zapus就好了。

首先,做好备份

sudo cp /etc/lsb-release /etc/lsb-release.backup
Run Code Online (Sandbox Code Playgroud)

然后编辑文件

sudo -H gedit /etc/lsb-release
Run Code Online (Sandbox Code Playgroud)

将内容替换为:

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=17.04
DISTRIB_CODENAME=zesty
DISTRIB_DESCRIPTION="Ubuntu 17.04"
Run Code Online (Sandbox Code Playgroud)

完成工具和驱动程序的安装后,只需还原更改:

sudo rm -f /etc/lsb-release
sudo cp /etc/lsb-release.backup /etc/lsb-release
Run Code Online (Sandbox Code Playgroud)


des*_*ert 2

截至目前Intel还没有提供17.10的显卡驱动,Linux版Intel显卡更新工具的最新版本是v2.0.6 for Ubuntu 17.04,而这个软件显然不适用于Ubuntu 17.10。