Page 2 of 2

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 18:46
by coaxguy99
Thank you so much! I'm getting close. I get the following message when running dracut:

alben[~]$ sudo dracut --kver 6.12.8
dracut: Executing: /usr/bin/dracut --kver 6.12.8
dracut: 95nfs: Could not find any command of 'rpcbind portmap'!
dracut[E]: Module 'ostree' cannot be found.

Thanks,
Al

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 19:16
by gapan
Try installing the libostree package.

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 19:35
by DidierSpaier
It seems you need the ostree package. You can try the one from Slint but as it has several dependencies you could do what follows to also also install them:

Edit /etc/slapt-getslapt-getrc as root and append this line to it:

Code: Select all

SOURCE=https://slackware.uk/slint/x86_64/slint-15.0:DEFAULT
then type:

Code: Select all

sudo slapt-get --add-keys
sudo slapt-get -u
sudo slapt-get -i ostree -s
Then remove ot comment out he line you appended to /etc/slapt-get/slapt-getrc
The last command will list all packages that would be installed and upgraded, without actually performing the updates. If that looks good to actually perform the updates type:

Code: Select all

sudo slapt-get -i ostree
Alternatively (maybe safer?) to build and install the packages type:

Code: Select all

sudo slapt-src -u
slapt-src -i ostree
Then try again to run dracut.

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 21:56
by coaxguy99
That almost worked but it appears there is a dead link to an html file. After a long list of CC and CCLD messages, I received the following:

several of the following types of messages...
CC tests/test_rollsum_cli-test-rollsum-cli.o
CC tests/libostreetest_la-libostreetest.lo
CC tests/libostreetest_la-test-mock-gio.lo
CCLD libostreetest.la
CCLD tests/test-rollsum-cli
CC src/switchroot/ostree_prepare_root-ostree-prepare-root.o
CCLD ostree-prepare-root
GEN man/ostree.1

and then...

I/O error : Attempt to load network entity http://docbook.sourceforge.net/release/ ... ocbook.xsl
warning: failed to load external entity "http://docbook.sourceforge.net/release/ ... ocbook.xsl"
cannot parse http://docbook.sourceforge.net/release/ ... ocbook.xsl
make[2]: *** [Makefile:9872: man/ostree.1] Error 4
make[2]: Leaving directory '/usr/src/slapt-src/system/ostree/libostree-2021.3'
make[1]: *** [Makefile:7746: all-recursive] Error 1
make[1]: Leaving directory '/usr/src/slapt-src/system/ostree/libostree-2021.3'
make: *** [Makefile:3176: all] Error 2
fakeroot -- sh ostree.SlackBuild Failed

alben[~]$


I assume the problem is the http address is dead.

Not sure how to get around that. I'd like to make it work, but the bluetooth does work on that laptop and I can always just connect to an external speaker for sound. I can also boot into Mageia if I need the built-in speakers since I have it working there but Salix is a very fine distro so I'm hoping to get this figured out if I can. It's one of those weird things where the intel apollo lake based chromebooks don't have sound drivers built into standard linux kernels and it requires a work-around. Even then, the script only works for the speakers, not the internal mic. Anway, I appreciate all of your help and it's giving me better insight into how to install things from other repositories.

Cheers!
Al

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 22:38
by gapan
gapan wrote: 30. May 2025, 19:16 Try installing the libostree package.

Re: Trying to install audio script for chromebook

Posted: 30. May 2025, 22:58
by coaxguy99
Thanks. libostree is already installed. Stumped...