2

I installed Steam through the Ubuntu Logitec and got the following messages:

You are missing the following 32-bit libraries, and Steam may not run: libc.so.6

Some people advised in previous threads to download through the Steam website and I did but it remains the same.

I am not familiar with Ubuntu yet so pardon my basic question.

Processor: Intel® Core™ i5-4210U CPU @ 1.70GHz × 4
Graphic card: Intel® Haswell Mobile
OS: Ubuntu (Please Specify Flavour) 64 bits

David
  • 3,367
L.A
  • 29

1 Answers1

3

You are missing those following libgl libraries :

sudo apt-get install libgl1-mesa-dri:i386 libgl1-mesa-glx:i386 libc6-i386

You may need to add the 32-bit architecture first :

sudo dpkg --add-architecture i386
sudo apt-get update
hg8
  • 13,462