Page 1 of 1

Missing video hardware acceleration

Posted: 22 Sep 2022, 04:07
by Ed_P
Any suggestions on dmesg and lspci commands I need to run to figure out what I need to resolve this. :) Plus any other commands that may help.

Image

When I figure out what I need I'll be back for help how to get it. :happy62: :D

Missing video hardware acceleration

Posted: 22 Sep 2022, 06:02
by ncmprhnsbl
usually /var/logXorg.0.log should give a clue
othrwise lspci | grep -i vga or smthng like to see what sort of hardware and lsmod to see what kernel modules are in use..

Missing video hardware acceleration

Posted: 22 Sep 2022, 07:09
by babam
Ed_P,

Code: Select all

# getmod -m intel-media-driver
Add /etc/profile.d/intel-media.sh

Code: Select all

#!/bin/sh

export LIBVA_DRIVER_NAME=iHD

Missing video hardware acceleration

Posted: 22 Sep 2022, 14:51
by Ed_P
Thank you guys, :friends: I will keep you posted on my results.

Added in 2 hours 12 minutes 41 seconds:
Ok, what I've got.

Code: Select all

root@porteus:/home/guest# lspci | grep -i vga
00:02.0 VGA compatible controller: Intel Corporation Device 9a49 (rev 01)
root@porteus:/home/guest# dmesg | grep error
[    1.897923] squashfs: SQUASHFS error: Filesystem uses "zstd" compression. This is not supported
root@porteus:/home/guest# lsmod | grep intel
intel_gtt              16384  1 i915
btintel                12288  1 btusb
bluetooth             286720  4 btrtl,btintel,btbcm,btusb
kvm_intel             131072  0
kvm                   286720  1 kvm_intel
crc32c_intel           16384  0
ghash_clmulni_intel    12288  0
aesni_intel           159744  0
aes_x86_64             16384  1 aesni_intel
crypto_simd            12288  1 aesni_intel
glue_helper            12288  1 aesni_intel
cryptd                 16384  3 crypto_simd,ghash_clmulni_intel,aesni_intel
root@porteus:/home/guest# ls /mnt/live/memory/images/intel*
/bin/ls: cannot access '/mnt/live/memory/images/intel*': No such file or directory
root@porteus:/home/guest# 
"vga" was a better match than my using "video" for my searches and shows a match in lspci.

I created the intel-media-driver module using getmod as suggested and put it in the modules folder but it didn't load. I suspect it was the "zstd" error. How do I handle that problem?

Missing video hardware acceleration

Posted: 22 Sep 2022, 17:31
by babam
Are you using Porteus 4.0?

Missing video hardware acceleration

Posted: 22 Sep 2022, 17:44
by Ed_P
For this yes. Would a xzm2dir / dir2xzm work?

Missing video hardware acceleration

Posted: 22 Sep 2022, 17:49
by babam
Oh no, Porteus 4.0 is old/outdated (xorg-mesa), doesn't support the latest hardware (hardware acceleration).

Missing video hardware acceleration

Posted: 23 Sep 2022, 06:25
by Ed_P
babam wrote:
22 Sep 2022, 17:49
Porteus 4.0 is old/outdated (xorg-mesa), doesn't support the latest hardware (hardware acceleration).
:wall: Thanks babam. Sorry to hear that.

Missing video hardware acceleration

Posted: 25 Sep 2022, 02:26
by ncmprhnsbl
um, this isn't about "video hardware acceleration", but your video card (kernel)driver not loading (probly using vesa as a fallback)
intel-media-driver is just for "hardware"(ie. graphic card) decoding of media(ie. a video(movie)) with mpv or the like.
more likely, some missing firmware, or old xorg driver doesn't work with newer hardware.. same upshot tho, for the second..

Missing video hardware acceleration

Posted: 25 Sep 2022, 03:09
by Ed_P
Thanks ncmp.
ncmprhnsbl wrote:
25 Sep 2022, 02:26
but your video card (kernel)driver not loading
What do I search for to verify that?
ncmprhnsbl wrote:
25 Sep 2022, 02:26
or old xorg driver doesn't work with newer hardware.
Is there a way to create the missing driver as a module from 5.0 in 4.0? :%)

Missing video hardware acceleration

Posted: 25 Sep 2022, 04:07
by ncmprhnsbl
Ed_P wrote:
25 Sep 2022, 03:09
What do I search for to verify that?
lsmod with no grep ...and /var/log/Xorg.0.log ..
porteus system info has all this and more one place...