0

when i try to launch steam a message pops up- you are missing the following 32-bit libraries,and steam may not run: libic.so.6 I tried a get apt-update but the message still pops up anybody know how to fix?

Nate Bray
  • 121

2 Answers2

2

The command apt-get update only refreshes your sources; it doesn't do anything else. What you need to do is run this:

sudo apt-get install '^libc6.*'

That will install the required package for you.

TheWanderer
  • 19,525
  • 12
  • 52
  • 65
1

In order to easily install all the libraries you can use the terminal command :

sudo apt-get install ia32-libs

Hope this helps.

A.B.
  • 92,125
Apad121
  • 443
  • 2
  • 7
  • 19