0

I'm trying to install Steam onto my computer in Ubuntu 16.04, but whenever I try to start steam I get this error message:

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

libc.so.6

How do I fix this?

  • 2
    Possible duplicate of [Installing Steam on ubuntu 14.04 libc.so.6 error please help](http://askubuntu.com/questions/671160/installing-steam-on-ubuntu-14-04-libc-so-6-error-please-help) – mchid May 16 '16 at 09:01

1 Answers1

0

Try doing this:

  1. find | grep libc.so.6
  2. Copy/Remember the path shown by the command's output
  3. Create a link to the /lib folder using sudo ln -s <your-libc-path-here> /lib/libc.so.6

Guessing this should solve it.

Anonymint
  • 164
  • 5