1

I have just re-installed Ubuntu 14.04 and I am trying to install Steam.

This is what I get

enter image description here

After using

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade

I get

enter image description here

After waiting for some days the official link from Steam worked again (because it didn't work before) so I downloaded the .deb package and tried to install it.

Every time I press the Steam icon it produces the next message

enter image description here

so I try to install them but the installation never completes as I get

enter image description here

What is that now and how can I fix it?

Adam
  • 2,738

1 Answers1

0

You need to add 32bit architecture to Your system

sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get upgrade

For Your 2nd issue, please do:

sudo rm -rf /var/lib/apt/lists/*
sudo apt-get clean
sudo apt-get update

Following @TrailRider comment, please try to change mirror of Your repositories or try to generate new ones, You can use this web to speed things up:

https://repogen.simplylinux.ch/

Eska
  • 495