Intel hd graphics драйвера линукс

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.

Источник

How do I install the Intel Graphics driver in my system?

Can someone help me out and explain or point me in the right direction on how to check video drivers and see if my video card running okay? I had 10.04 installed on my Thinkpad r61 with Compiz Manager and life was great, until the machine took water damage. I bought an ASUS (X54H) since and am trying out 12.04, but the desktop just doesn’t look right. I always struggled with video driver installation. There are no proprietary drivers available in the hardware manager. When I run lspci | grep VGA :

00:02.0 VGA compatible controller: Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) 

I will greatly appreciate your help. I want to use Linux more, but like I said video drivers appear to be my biggest concern. I have also tried 12.04 on my desktop PC, but again failed to configure video card, so switched back to Windows 7.

Читайте также:  Astra linux установка антивируса

5 Answers 5

The Intel graphics driver is part of the xserver-xorg-video-intel driver package, which is installed on all Ubuntu systems by default. And since it isn’t a proprietary driver package, it doesn’t show up in jockey (aka the Hardware Drivers application).

Just to ensure it didn’t get removed by mistake (very slim possibility), just run this command:

sudo apt-get install xserver-xorg-video-intel 

If the driver is installed, and you’re still having issues with graphics on your desktop, then please file a bug report against the xorg package, using this terminal command:

Источник

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.

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!

Источник

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

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

Читайте также:  Arch linux zram generator

В этой статье мы рассмотрим как выполняется установка драйвера 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. Для добавления репозитория в систему выполните:

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

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

Выводы

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

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

Источник

How to Get the Latest Intel Graphics Drivers using the Graphics Installer for Linux

One of the problems with an open source operating system like Linux is the lack of official hardware support from device makers. Although a plethora of drivers exist for a large variety of devices, many of these drivers are reversed engineered and aren’t provided by the equipment manufacturers. Fortunately over the last few years, the attitude of hardware vendors has started to change and many manufacturers do now provide official drivers for their products. One such company is Intel. For many years now, Intel has been a strong proponent of Linux and recently the chip giant released a new version of its graphics drivers for Linux along with a program which allows you to easily install them.

The Intel Graphics Installer for Linux, which supports Ubuntu 13.10 and Fedora 19, allows you to stay current with the latest optimizations and fixes to Intel’s graphics drivers to ensure that you get the best experience under Linux. Intel has drivers for most of its GPUs including those found in the Core i3, Core i5 and Core i7 processors as well as the embedded video solutions in its Express Chipsets.

Читайте также:  Rar как установить linux

To install the Intel Graphics Installer for Linux, download the correct installer for your operating system from the download page. There are 32-bit and 64-bit versions for Ubuntu 13.10 and Fedora 19. If you aren’t sure if you are using a 64-bit or 32-bit installation, use uname -a from the command line to find out.

For installing the downloaded .deb file on Ubuntu, you need to installed the ttf-ancient-fonts . The Intel installer has a dependency on these fonts which is easily fixed with:

sudo apt-get install ttf-ancient-fonts

Now the actual Intel driver installer can be added to your system using:

sudo dpkg -i intel-linux-graphics-installer_1.0.3_amd64.deb

Where “intel-linux-graphics-installer_1.0.3_amd64.deb” is the name of the package you downloaded from Intel’s website. If you downloaded the 32-bit version or if Intel release a updated version, then the package name may be slightly different.

The installation process for Fedora is very similar. But to install the package use:

su -c "rpm -ivh intel-linux-graphics-installer-1.0.3-3.5.x86_64.rpm"

As with the Ubuntu install process, “intel-linux-graphics-installer-1.0.3-3.5.x86_64.rpm” is the name of the package you downloaded from Intel’s website. If you downloaded the 32-bit version, then the package name will be slightly different.

Once installed, find and run the intel installer for linux using the launcher:

Intel Graphics Installer for Linux - launcher

On the initial greeting page, click “Begin” to proceed with the installation. The installer will then check your system to make sure it meets the system requirements. The first check is to see if you actually have an Intel GPU in your PC!

Intel Graphics Installer for Linux - diag

Click “Install” to continue. The installer will now add the drivers to your system.

Intel Graphics Installer for Linux - upgrading

Assuming each step is successful (indicated by a green OK), click “Report” to see a final summary of the installation process. Click “Close” and reboot your system when prompted.

Once your system is rebooted, it will be using the latest Intel drivers. Since the installer adds Intel’s graphic driver repository to your system, any new updates issued by Intel will be automatically found by the normal software update process.

If you have any questions about the Intel Graphics Installer for Linux, please ask them in the comments and we will see if we can help.

Gary has been a technical writer, author and blogger since 2003. He is an expert in open source systems (including Linux), system administration, system security and networking protocols. He also knows several programming languages, as he was previously a software engineer for 10 years. He has a Bachelor of Science in business information systems from a UK University.

Our latest tutorials delivered straight to your inbox

Источник

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