sudo dnf install -y steam
The installation went well but a final message appeared:
You are missing the following 32-bit libraries, and Steam may not run:
libpcre2-8.so.0
libpcre2-8.so.0
And then it just closes. Any hint? Missing 32-bit libraries?
sudo dnf install -y steam
The installation went well but a final message appeared:
You are missing the following 32-bit libraries, and Steam may not run:
libpcre2-8.so.0
libpcre2-8.so.0
And then it just closes. Any hint? Missing 32-bit libraries?
Can you just install them, eg
sudo dnf install libpcre2-8.so.0
?
I tried and it was already installed
The command “sudo dnf install libpcre2-8.so.0” says that package “jsource-9.5-1.x86_64” is already installed…
But see that it is 64 bit; and Steam complains about a 32 bit version
Mine said
Package “pcre2-10.44-1.fc41.1.i686” is already installed.
Is jsource a fedora rpm or did it come from another repository?
You may need to remove it, install steam and then reinstall.
I did not install it manually. I believe it was installed from a repository. Is it possible to use dnf to track the origin of this package?
I believe dnf list --installed jsource*
You may want to try sudo dnf install pcre2-10.44-1.fc41.1.i686
Looks like jsource is from rpm sphere repo.
I’m thinking about uninstalling the package, disabling rpmsphere and reinstalling ibpcre2-8.so.0 via dnf.
Will it work without any errors?
sudo dnf install pcre2.i686
works to install the 32 bit version.
If you’re going to disable the repository and remove packages you may want to look at everything you have installed from there.
sudo dnf list --installed | grep -i sphere
or something similar should work.