web-dev-qa-db-ja.com

Ubuntu 17.10に最新のIntelグラフィックスドライバーをインストールする方法は?

私はこれを試していましたが、エラーが発生しました: 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
12

これまで、IntelはUbuntu 17.10のサポートを提供していません。 ppa:oibaf/graphics-driversの更新されたドライバーを2つの外部モニターで使用していますが、これまでのところ統合グラフィックに問題はありません。

$ 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

更新および最適化されたOpen Graphics Drivers PPAリポジトリからインストールできます:

Sudo add-apt-repository ppa:oibaf/graphics-drivers
Sudo apt update
Sudo apt upgrade -y
9
Tombart

Zesty Zapusに対応するように一時的に/etc/lsb-releaseを変更するだけで、問題なく動作します。

まず、バックアップを作成します

Sudo cp /etc/lsb-release /etc/lsb-release.backup

次に、ファイルを編集します

Sudo -H gedit /etc/lsb-release

内容を次のものに置き換えます。

DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=17.04
DISTRIB_CODENAME=zesty
DISTRIB_DESCRIPTION="Ubuntu 17.04"

ツールとドライバーのインストールが完了したら、変更を元に戻します。

Sudo rm -f /etc/lsb-release
Sudo cp /etc/lsb-release.backup /etc/lsb-release
5
Luka

これまでIntelは17.10のグラフィックドライバーを提供していませんでしたが、 LinuxのIntelグラフィックアップデートツール の最新バージョンはUbuntu 17.04のv2.0.6であり、このソフトウェアはUbuntu 17.10では明らかに動作しません。

2
dessert