WelcomeWelcome | FAQFAQ | DownloadsDownloads | WikiWiki

Author Topic: libgbm.so.1  (Read 208 times)

Offline mark2

  • Newbie
  • *
  • Posts: 10
libgbm.so.1
« on: December 17, 2024, 09:02:10 PM »
I am trying to run the arm appimage from https://capacities.io/download-app on piCore 15/pi4b.
I installed bash and fuse and also cups was needed.
I now need libgbm.so.1. Is this available? Cheers, Mark


Code: [Select]
tc@box:~$ /mnt/sda2/tce/Downloads/Capacities-1.43.47-arm64.AppImage
/tmp/.mount_CapaciPf4L8t/capacities: error while loading shared libraries: libgbm.so.1: cannot open shared object file: No such file or directory

    [Edit]: Added code tags.  Rich
« Last Edit: December 17, 2024, 09:19:17 PM by Rich »

Offline polikuo

  • Hero Member
  • *****
  • Posts: 758
Re: libgbm.so.1
« Reply #1 on: December 17, 2024, 09:07:12 PM »
Hi, mark2.
Welcome to the forum.

Have you tried libEGL.tcz ?

You can search for files with
Code: [Select]
provides.sh libgbm.so.1

Offline Rich

  • Administrator
  • Hero Member
  • *****
  • Posts: 11694
Re: libgbm.so.1
« Reply #2 on: December 17, 2024, 09:11:58 PM »
Hi mark2
Please use  Code Tags  when posting commands and responses seen in a terminal. To use  Code Tags  click on the  #  icon
above the reply box and paste your text between the  Code Tags  as shown in this example:

Quote
[code][   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517[/code]

It will appear like this in your post:
Code: [Select]
[   36.176529] pcm512x 1-004d: Failed to get supply 'AVDD': -517
[   36.176536] pcm512x 1-004d: Failed to get supplies: -517
[   36.191753] pcm512x 1-004d: Failed to get supply 'AVDD': -517

Code Tags  serve as visual markers between what you are trying to say and the information you are posting. They also preserve
spacing so column aligned data displays properly. Code tags also automatically add horizontal and or vertical scrollbars
to accommodate long lines and listings.

Offline mark2

  • Newbie
  • *
  • Posts: 10
Re: libgbm.so.1
« Reply #3 on: December 17, 2024, 09:55:19 PM »
Thanks for provides.sh and the code tags. libEGL gave me libgbm.so.1 and now I need libudev.so.1.
provides.sh does not find it but it finds libudev.so in libudev and udev-lib.
I installed libudev.

Is there a way to make it pick up libudev.so instead of libudev.so.1?

Thanks,
Mark

Offline polikuo

  • Hero Member
  • *****
  • Posts: 758
Re: libgbm.so.1
« Reply #4 on: December 17, 2024, 10:02:29 PM »
Is there a way to make it pick up libudev.so instead of libudev.so.1?

Try linking it
Code: [Select]
cd /usr/local/lib
sudo ln -s libudev.so libudev.so.1

Offline mark2

  • Newbie
  • *
  • Posts: 10
Re: libgbm.so.1
« Reply #5 on: December 18, 2024, 09:10:37 PM »
Code: [Select]
cd /usr/local/lib
sudo ln -s libudev.so libudev.so.1

Thanks but that did not work. I am going to study up on appimage before continuing.