How to install GPU drivers for Intel® HD Graphics (8086:22B0)?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
1
down vote

favorite












I've got Intel Compute Stick (STK1AW32SC), however, after installing Ubuntu 18.04 LTS (Bionic Beaver, from ISO), I've got the following libGL errors:



$ ssh intel-stick-host
Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64)
$ lspci -nnk | grep -i VGA -A3
00:02.0 VGA compatible controller [0300]: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:22b0] (rev 22)
Subsystem: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:2066]
Kernel driver in use: i915
Kernel modules: i915
$ sudo apt install vainfo && vainfo
libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_1_1
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.1 (libva 2.1.0)
vainfo: Driver version: Intel i965 driver for Intel(R) CherryView - 2.1.0
$ sudo apt install mesa-utils && glxinfo
name of display: localhost:10.0
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: GLXBadContext
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 6 (X_GLXIsDirect)
Serial number of failed request: 25
Current serial number in output stream: 24
$ uname -a
Linux ICS-STK1AW32SC 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux


How can I install GPU drivers for above Intel HD Graphics?



I've checked on the Intel download page, but the drivers are only available for Windows.



My goal is to have OpenGL support with hardware acceleration/direct rendering (DRI), so apps such as web-browser can work faster. Currently it seems the generic driver is in use (i965_drv_video.so).



I'm running Firefox via ssh by (which uses XQuartz on macOS):



$ ssh -X intel-stick-host firefox
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast






share|improve this question






















  • Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
    – dobey
    May 13 at 19:58










  • @dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
    – kenorb
    May 13 at 20:04







  • 3




    You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
    – dobey
    May 13 at 20:28














up vote
1
down vote

favorite












I've got Intel Compute Stick (STK1AW32SC), however, after installing Ubuntu 18.04 LTS (Bionic Beaver, from ISO), I've got the following libGL errors:



$ ssh intel-stick-host
Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64)
$ lspci -nnk | grep -i VGA -A3
00:02.0 VGA compatible controller [0300]: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:22b0] (rev 22)
Subsystem: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:2066]
Kernel driver in use: i915
Kernel modules: i915
$ sudo apt install vainfo && vainfo
libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_1_1
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.1 (libva 2.1.0)
vainfo: Driver version: Intel i965 driver for Intel(R) CherryView - 2.1.0
$ sudo apt install mesa-utils && glxinfo
name of display: localhost:10.0
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: GLXBadContext
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 6 (X_GLXIsDirect)
Serial number of failed request: 25
Current serial number in output stream: 24
$ uname -a
Linux ICS-STK1AW32SC 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux


How can I install GPU drivers for above Intel HD Graphics?



I've checked on the Intel download page, but the drivers are only available for Windows.



My goal is to have OpenGL support with hardware acceleration/direct rendering (DRI), so apps such as web-browser can work faster. Currently it seems the generic driver is in use (i965_drv_video.so).



I'm running Firefox via ssh by (which uses XQuartz on macOS):



$ ssh -X intel-stick-host firefox
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast






share|improve this question






















  • Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
    – dobey
    May 13 at 19:58










  • @dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
    – kenorb
    May 13 at 20:04







  • 3




    You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
    – dobey
    May 13 at 20:28












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I've got Intel Compute Stick (STK1AW32SC), however, after installing Ubuntu 18.04 LTS (Bionic Beaver, from ISO), I've got the following libGL errors:



$ ssh intel-stick-host
Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64)
$ lspci -nnk | grep -i VGA -A3
00:02.0 VGA compatible controller [0300]: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:22b0] (rev 22)
Subsystem: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:2066]
Kernel driver in use: i915
Kernel modules: i915
$ sudo apt install vainfo && vainfo
libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_1_1
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.1 (libva 2.1.0)
vainfo: Driver version: Intel i965 driver for Intel(R) CherryView - 2.1.0
$ sudo apt install mesa-utils && glxinfo
name of display: localhost:10.0
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: GLXBadContext
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 6 (X_GLXIsDirect)
Serial number of failed request: 25
Current serial number in output stream: 24
$ uname -a
Linux ICS-STK1AW32SC 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux


How can I install GPU drivers for above Intel HD Graphics?



I've checked on the Intel download page, but the drivers are only available for Windows.



My goal is to have OpenGL support with hardware acceleration/direct rendering (DRI), so apps such as web-browser can work faster. Currently it seems the generic driver is in use (i965_drv_video.so).



I'm running Firefox via ssh by (which uses XQuartz on macOS):



$ ssh -X intel-stick-host firefox
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast






share|improve this question














I've got Intel Compute Stick (STK1AW32SC), however, after installing Ubuntu 18.04 LTS (Bionic Beaver, from ISO), I've got the following libGL errors:



$ ssh intel-stick-host
Welcome to Ubuntu 18.04 LTS (GNU/Linux 4.15.0-20-generic x86_64)
$ lspci -nnk | grep -i VGA -A3
00:02.0 VGA compatible controller [0300]: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:22b0] (rev 22)
Subsystem: Intel Corporation Atom/Celeron/Pentium Processor x5-E8000/J3xxx/N3xxx Series PCI Configuration Registers [8086:2066]
Kernel driver in use: i915
Kernel modules: i915
$ sudo apt install vainfo && vainfo
libva info: VA-API version 1.1.0
libva info: va_getDriverName() returns 0
libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/i965_drv_video.so
libva info: Found init function __vaDriverInit_1_1
libva info: va_openDriver() returns 0
vainfo: VA-API version: 1.1 (libva 2.1.0)
vainfo: Driver version: Intel i965 driver for Intel(R) CherryView - 2.1.0
$ sudo apt install mesa-utils && glxinfo
name of display: localhost:10.0
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: GLXBadContext
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 6 (X_GLXIsDirect)
Serial number of failed request: 25
Current serial number in output stream: 24
$ uname -a
Linux ICS-STK1AW32SC 4.15.0-20-generic #21-Ubuntu SMP Tue Apr 24 06:16:15 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux


How can I install GPU drivers for above Intel HD Graphics?



I've checked on the Intel download page, but the drivers are only available for Windows.



My goal is to have OpenGL support with hardware acceleration/direct rendering (DRI), so apps such as web-browser can work faster. Currently it seems the generic driver is in use (i965_drv_video.so).



I'm running Firefox via ssh by (which uses XQuartz on macOS):



$ ssh -X intel-stick-host firefox
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast








share|improve this question













share|improve this question




share|improve this question








edited May 13 at 20:06

























asked May 13 at 19:45









kenorb

3,89513545




3,89513545











  • Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
    – dobey
    May 13 at 19:58










  • @dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
    – kenorb
    May 13 at 20:04







  • 3




    You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
    – dobey
    May 13 at 20:28
















  • Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
    – dobey
    May 13 at 19:58










  • @dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
    – kenorb
    May 13 at 20:04







  • 3




    You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
    – dobey
    May 13 at 20:28















Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
– dobey
May 13 at 19:58




Intel video drivers are included in the upstream kernel and Xorg, and so are already included in a standard Ubuntu Install. Are you running under Xorg? Wayland? Or are you running this as a headless display and connecting via SSH?
– dobey
May 13 at 19:58












@dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
– kenorb
May 13 at 20:04





@dobey Above commands were run via ssh and I'm running Firefox via ssh -X intel-stick firefox on macOS (via XQuartz). Do you think when I VNC to it, it'll make the difference?
– kenorb
May 13 at 20:04





3




3




You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
– dobey
May 13 at 20:28




You are getting these results because you are running over SSH, and so vainfo is attempting to query the remote X server. Yes, if you run an X session on the hardware on the intel stick, and VNC to it, it will probably show you more what you are looking to see. Forwarding the X session is not going to use hardware acceleration.
– dobey
May 13 at 20:28















active

oldest

votes











Your Answer







StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "89"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: false,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);








 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1035832%2fhow-to-install-gpu-drivers-for-intel-hd-graphics-808622b0%23new-answer', 'question_page');

);

Post as a guest



































active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes










 

draft saved


draft discarded


























 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1035832%2fhow-to-install-gpu-drivers-for-intel-hd-graphics-808622b0%23new-answer', 'question_page');

);

Post as a guest













































































Popular posts from this blog

How do so many people here on Academia.SE, and in general, afford lavish higher education programs?

Trouble downloading packages list due to a “Hash sum mismatch” error

How do I move numbers in filenames, in a batch renaming operation?