Intel driver update linux

How to upgrade Intel Graphics driver?

Please note that Intel has discontinued the «Intel graphics for Linux». There will be no further release after 2018q1 (which targets 17.04). Intel says that the update processes built into Fedora and Ubuntu are mature enough to no longer necessitate a separate update site. Although it sounds more like it is them who can’t keep up. In any case 01.org can’t be used to update 18.04 LTS.

1 Answer 1

Sorry, but if you need to ask how to do that . just don’t. You are more than likely to hose your system. I see already 1 issue: the mesa version in your download is 18.0. Ubuntu 18 is on Mesa 18.1 so it is already a newer version than the one you will download. That might be a problem.

There is a FAR easier method for doing this: use the PPA for it (see this launchpad page). It was updated 5 hours ago so you might be in luck. You can add it with this command and it will add all the packages listed on the website; you will need the package xserver-xorg-video-intel .

sudo add-apt-repository ppa:oibaf/graphics-drivers 

From the description of this PPA:

  • All packages are automatically built twice a day when there are upstream changes
  • Vulkan 1.1+ on recent Intel and Radeon GPU
  • OpenGL 4.5+ support and new OpenGL extensions: http://mesamatrix.net
  • OpenCL support with updated libclc
  • gallium-nine support installed by default.
  • VDPAU and VAAPI Gallium3D accelerated video drivers
  • OpenMAX IL Bellagio and XvMC only on zesty and older — disabled since artful due to not being broadly used
  • packages built against latest LLVM
  • Disabled Ubuntu MIR
Читайте также:  Где консоль в линукс

If the features you mention are not in there yet you could ask about it on the Phoronix forums. Those are the people that will update the drivers for us.

Источник

Установка драйвера Intel в Ubuntu

В отличие от драйверов видеокарт от других производителей, таких как Nvidia и AMD, часть драйвера Intel для интегрированных видеокарт встроена в ядро, а другая часть в пакет mesa-utils. Таким образом если вы используете последнюю версию ядра и свежую версию mesa-utils то, скорее всего, вы используете самую свежую версию драйвера Intel.

В этой статье мы рассмотрим как выполняется установка драйвера Intel в Ubuntu если он не установлен по умолчанию, а также как получить самую последнюю версию.

Официальный установщик драйверов Intel

Раньше существовал установщик драйверов от Intel, позволяющий установить последнюю версию драйвера в Ubuntu или Fedora, но потом компания прекратила поддержку этой утилиты. Скачать её можно здесь. Но последняя версия пакета вышла в 2018 году, и с тех пор уже вышло много новых ядер и новых версий дистрибутива Ubuntu. Сейчас в репозиториях Ubuntu версия драйвера более новая чем там.

Установка драйвера Intel в Ubuntu

Вы можете посмотреть какой сейчас драйвер видеокарты используется с помощью команды lspci:

Как видите, в данном примере используется i915, это драйвер видеокарты от Intel. Он работает и ничего больше устанавливать не нужно. Если же в этой строчке находится что-то другое, можно попытаться установить драйвер.

Для установки части драйвера для Xorg и Mesa достаточно установить в систему такие пакеты:

sudo apt install xserver-xorg-video-intel

sudo apt install mesa-utils

Если вы хотите получить самую последнюю версию драйвера можно воспользоваться специальным PPA. Для добавления репозитория в систему выполните:

Читайте также:  Logitech connection utility linux

sudo add-apt-repository ppa:oibaf/graphics-drivers

Затем просто обновите систему и перезагрузите компьютер:

Выводы

Вот и все. Теперь вы знаете как выполняется установка драйвера Intel Ubuntu. В отличие от драйверов для Nvidia, в большинстве случаев здесь всё уже установлено. И вам не надо думать как поддерживать актуальную версию этого драйвера в своей системе. Если у вас остались вопросы, спрашивайте в комментариях!

Обнаружили ошибку в тексте? Сообщите мне об этом. Выделите текст с ошибкой и нажмите Ctrl+Enter.

Источник

Steps to Install Intel Graphic Drivers on Ubuntu 20.04LTS

How To Install Intel Graphic Drivers On Ubuntu 20.04LTS

Hello folks, in this article, We will be discussing how to install Intel graphic drivers on Ubuntu 20.04LTS.

Intel’s graphic drivers come preinstalled in the kernel. But if they are not installed on your system, and you want to install them or check for currently used drivers or graphic cards. Follow this article till the end.

How to check graphic drivers on Ubuntu?

Open a terminal window by pressing Ctrl+Alt+T. Execute the following command to see the currently used graphic drivers:

install intel graphics ubuntu 20.04 LTS

sudo lspci -nn | grep -e VGA

Another way of checking the currently used graphic drivers is using the mesa utility. First, install the mesa utility by executing the following command:

sudo apt install mesa-utils

Now, enter the following command to get the driver details. It will also give you other GPU details along with driver details.

How to install Intel graphic drivers on Ubuntu?

Open a terminal window by pressing Ctrl+Alt+T. Now, to install the latest drivers, add the graphics package repository by executing the following commands, it will install gpg-agent and get and will install the public key required to verify the integrity of the package.

sudo apt install -y gpg-agent wget wget -qO - https://repositories.intel.com/graphics/intel-graphics.key | sudo apt-key add - sudo apt-add-repository \ 'deb [arch=amd64] https://repositories.intel.com/graphics/ubuntu focal main'

Now, Add the graphics software packages by executing the following command:

sudo apt update sudo apt install \ intel-opencl-icd \ intel-level-zero-gpu level-zero \ intel-media-va-driver-non-free libmfx1

That’s it! Intel graphic drivers are installed successfully.

Читайте также:  Debugging program in linux

If you also want to install development packages, execute the following command:

sudo apt install \ libigc-dev \ intel-igc-cm \ libigdfcl-dev \ libigfxcmrt-dev \ level-zero-dev

Conclusion

So, We discussed how to check for currently used drivers and install Intel graphic drivers on Ubuntu 20.04LTS. I hope it works for you. Thank you for reading!

Источник

Оцените статью
Adblock
detector