* problems after install of void musl x86_64
@ 2019-04-27 21:00 jacksprat
2019-04-27 21:29 ` 'Johannes Brechtmann' via voidlinux
0 siblings, 1 reply; 3+ messages in thread
From: jacksprat @ 2019-04-27 21:00 UTC (permalink / raw)
To: voidlinux
[-- Attachment #1.1: Type: text/plain, Size: 1665 bytes --]
I hope this is a good place to get some help with two problems I
encountered after I installed the MUSL version of Void Linux from the live
image to my hard drive. This is where I obtained the ISO:
https://a-hel-fi.m.voidlinux.org/live/current/void-live-x86_64-musl-20181111-xfce.iso
1. During an update
xbps-install -S
xbps-install -u # updates xbps first
xbps-install -u # attempts to update
it fails with
intel-ucode-20180807_3 missing from repo
I did
xbps-pkgdb -m hold intel-ucode
and the long update continued.
2. Firefox fails to start because libvpx.so.5 is missing. the command
xbps-query -f libvpx5
lists
libvpx.so.5 -> libvpx.so.5.0.0
libvpx.so.5.0 -> libvpx.so.5.0.0
but ls -l does not list any links for libvpx.so.5 and libvpx.so.5.0; the
libvpx.so.6 has correct symbolic links. it should have been easily fixed
ln -s /usr/lib/libvpx.so.5.0.0 /usr/lib/libvpx.so.5.0
ln -s /usr/lib/libvpx.so.5.0.0 /usr/lib/libvpx.so.5
but Firefox still can't start as it thinks libvpx.so.5 is missing. What am
I missing here?
I installed the non-MUSL version, and it did not produce either of these
issues.
thanks, jack
--
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To post to this group, send email to voidlinux@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/f79579ba-65a5-4880-9d2a-67f6ced8854d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[-- Attachment #1.2: Type: text/html, Size: 2213 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: problems after install of void musl x86_64
2019-04-27 21:00 problems after install of void musl x86_64 jacksprat
@ 2019-04-27 21:29 ` 'Johannes Brechtmann' via voidlinux
2019-04-27 23:01 ` jacksprat
0 siblings, 1 reply; 3+ messages in thread
From: 'Johannes Brechtmann' via voidlinux @ 2019-04-27 21:29 UTC (permalink / raw)
To: voidlinux
> 1. During an update
>
> xbps-install -S
> xbps-install -u # updates xbps first
> xbps-install -u # attempts to update
>
> it fails with
>
> intel-ucode-20180807_3 missing from repo
>
> I did
>
> xbps-pkgdb -m hold intel-ucode
>
> and the long update continued.
The intel-ucode package was moved to the nonfree repo which caused some
problems.
> 2. Firefox fails to start because libvpx.so.5 is missing. the command
>
> xbps-query -f libvpx5
>
> lists
>
> libvpx.so.5 -> libvpx.so.5.0.0
> libvpx.so.5.0 -> libvpx.so.5.0.0
>
> but ls -l does not list any links for libvpx.so.5 and libvpx.so.5.0;
> the libvpx.so.6 has correct symbolic links. it should have been
> easily fixed
>
> ln -s /usr/lib/libvpx.so.5.0.0 /usr/lib/libvpx.so.5.0
> ln -s /usr/lib/libvpx.so.5.0.0 /usr/lib/libvpx.so.5
>
> but Firefox still can't start as it thinks libvpx.so.5 is missing.
> What am I missing here?
You should be able to fix it by forcing a reinstall of libvpx5 with
# xbps-install -f libvpx5
See here for details on this issue:
https://github.com/void-linux/void-packages/issues/10013
Johannes
--
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To post to this group, send email to voidlinux@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/20190427232944.2b8c0b7c%40t440s.fritz.box.
For more options, visit https://groups.google.com/d/optout.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: problems after install of void musl x86_64
2019-04-27 21:29 ` 'Johannes Brechtmann' via voidlinux
@ 2019-04-27 23:01 ` jacksprat
0 siblings, 0 replies; 3+ messages in thread
From: jacksprat @ 2019-04-27 23:01 UTC (permalink / raw)
To: voidlinux
[-- Attachment #1.1: Type: text/plain, Size: 773 bytes --]
re: libvpx5, I diid a forced reinstall and it is now getting into Firefox.
I am looking forward to using musl-lib as a lighter alternative to glib; I
seem to remember there are some some packages that don't like musl-lib, but
hopefully they are ones I don't need.
thanks, jack
--
You received this message because you are subscribed to the Google Groups "voidlinux" group.
To unsubscribe from this group and stop receiving emails from it, send an email to voidlinux+unsubscribe@googlegroups.com.
To post to this group, send email to voidlinux@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/voidlinux/c363c692-775a-4a56-9786-91b905047c48%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
[-- Attachment #1.2: Type: text/html, Size: 1216 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-27 23:01 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-27 21:00 problems after install of void musl x86_64 jacksprat
2019-04-27 21:29 ` 'Johannes Brechtmann' via voidlinux
2019-04-27 23:01 ` jacksprat
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).