I’m using the x11 Desktop example as found on this blog post on an Intel Stick PC (Intel NUC) with the intention to run chromium in kiosk mode within xfce.
The problem is that I’m getting is poor video performance and chromium crashing (With the “aww snap, something went wrong message”) when I try and load any pages that are somewhat video / GPU intense…
Does anyone have any pointers on:
Running Chromium in Kiosk mode and the flags to get better performance out of it OR
Getting the native Intel Graphics drivers working reliably with the Stick inside BalenaOS and Docker?
And I’m getting the following in the logs before chrome crashes:
[1487:1532:0913/112004.075030:ERROR:bus.cc(396)] Failed to connect to the bus: Could not parse server address: Unknown address type (examples of valid types are "tcp" and on UNIX "unix")
For anyone else that’s trying to get this working with the correct video drivers on intel stick pc’s - it turned out that the drivers were in-fact installed correctly in my container but not chromium was not looking for them in the /usr/lib/x86_64-linux-gnu/dri location… A simple symlink has fixed the problems
apt install libgl1-mesa-dri && \
# Symlink drivers into /usr/lib/dri (if not exists)...
ln -s /usr/lib/x86_64-linux-gnu/dri /usr/lib/dri
@BalenaHQ
Would be amazing if you guys could include the new “Intel Integrated Graphics” linux drivers in your yocto base image for x64_86 NUC’s – I for one would use them, and I’d be thinking other users using intel NUC’s probably want the GPU drivers also…
For now mesa will do, however it’s not as performant as the ozone-gbm.
I’m glad you got to the bottom of the issue! I’ve brought up an internal issue about this. If we make any progress on this issue in the future I will be sure to update this thread with the relevant information.