Instalar Steam
iniciar sesión
|
idioma
简体中文 (Chino simplificado)
繁體中文 (Chino tradicional)
日本語 (Japonés)
한국어 (Coreano)
ไทย (Tailandés)
български (Búlgaro)
Čeština (Checo)
Dansk (Danés)
Deutsch (Alemán)
English (Inglés)
Español - España
Ελληνικά (Griego)
Français (Francés)
Italiano
Bahasa Indonesia (indonesio)
Magyar (Húngaro)
Nederlands (Holandés)
Norsk (Noruego)
Polski (Polaco)
Português (Portugués de Portugal)
Português - Brasil (Portugués - Brasil)
Română (Rumano)
Русский (Ruso)
Suomi (Finés)
Svenska (Sueco)
Türkçe (Turco)
Tiếng Việt (Vietnamita)
Українська (Ucraniano)
Informar de un error de traducción
.
More details on the 32-bit thing here....
https://steamcommunity.com/app/221410/discussions/0/1640915206447625383/
heresy
to OP
you need to enable multiarch and install 32bit libs for video driver
then once it runs without errors try to install steam from terminal
It does. Let's be a nice, welcoming community.
I would do:
sudo apt-file search libGL.so.1
which says
libgl1: /usr/lib/x86_64-linux-gnu/libGL.so.1
libgl1: /usr/lib/x86_64-linux-gnu/libGL.so.1.7.0
nvidia-340: /usr/lib/i386-linux-gnu/libGL.so.1
nvidia-340: /usr/lib/x86_64-linux-gnu/libGL.so.1
primus-libs: /usr/lib/x86_64-linux-gnu/primus/libGL.so.1
virtualbox-guest-x11: /usr/lib/virtualbox/additions/libGL.so.1
virtualbox-guest-x11-hwe: /usr/lib/virtualbox/additions/libGL.so.1
for me (on Kubuntu) and then do
sudo apt install nvidia-340 # as that looks the most likely
and then try again.
ldconfig -p | grep -i libgl
might help when chasing these sorts of things as that shows you what libraries matching the string ("libgl" here) your system knows about. Doesn't necessarily help with things like steam that ship their own libraries .. `locate -i libgl` could help there.
That often will create a new error. Chasing dependencies like that makes me nostalgic for my days running Slackware!
Yea, yea, I know.....I suggested an automatic to a guy who prefers to drive a stick but, in my defense, automatics have gotten much better in recent years ;).
Thank you so much man !! I'm searching for this solution for so long.
I also have a GTX 1050 Ti and using thje following command it worked properly :
apt install libgl1-nvidia-glvnd-glx:i386
I just ran into this today after I updated my Siduction install (last fresh install 6th April 2020).
Wasn't having any steam issues until I updated today and I update every week or 2.
Thank you Cat on Linux/this post for letting me get back to my game again (Civ 6).
libGL.so is a tricky beast.
It usually ships as part of the graphics drivers. For Linux there are several driver packages around:
Mesa, the open source OpenGL implementation and drivers
NVidia's proprietary blob
AMD's proprietary blob
for more info have a look at the post in stackoverflow. "https://stackoverflow.com/questions/31285958/my-files-linking-to-libgl-so-1"
This got me thinking on how the steam is allocating its graphics. basing on this i managed to narrow down the issue on what the fix could be.
I dug around other Linux forums more about on how to run games on integrated graphics and found the solution. Have a look at the link below.
"From a terminal window: optirun steam. Sets steam running on my actual graphics card rather than cpu-onboard intel graphics. "
https://askubuntu.com/questions/260813/trying-to-install-steam-error-you-are-missing-the-following-32-bit-libraries-a
so the bottom line is that.. if you have a dedicated GPU.. i suggest you to update all the libraries even if you have 64bit... i suggest you to install even the 32bit version... just in-case you don't run into other issues in the future.
these are following command i have used to debug
sudo apt-get update
sudo apt-get upgrade
sudo apt install libgl1-mesa-glx
sudo apt install libgl1-mesa-glx
"open-cv libraries"
OpenGL drivers
dpkg --add-architecture i386
apt install libgl1-nvidia-glvnd-glx:i386
finally "optirun steam" ==> this worked for me.
do let me know if you guys still see this issue... will try to find a solution.
The location of the file may vary, you can find it like this:
Source: https://askubuntu.com/a/264600/133983
2 years on, and this is still helping people! Thank-you so much dude.
Had to signup and reply to say this. I use ParrotOS and since upgrading to 5.0, Steam just broke and didn't wanna run. I tried literally everything, following the debian wiki, many many posts on people having similar issues and just randomly stumbled on this post.
apt install libgl1-nvidia-glvnd-glx:i386
This is what fixed the error for me. Thank-you so much :)