I'm trying to install Source Dedicated Server on Ubuntu Server 12.04 and every time I try to install lib32gcc1
, I get
E: Package 'lib32gcc1' has no installation candidate
Is there anything I can do to fix this?
I have tried running
sudo apt-get update
and the error persists.
apt-cache policy lib32gcc1
lib32gcc1:
Installed: (none)
Candidate: (none)
Version table:
grep -r ^deb\ .*main /etc/apt/sources.list*
/etc/apt/sources.list:deb http://us.archive.ubuntu.com/ubuntu/ precise main restricted
/etc/apt/sources.list:deb http://us.archive.ubuntu.com/ubuntu/ precise-updates main restricted
/etc/apt/sources.list:deb http://us.archive.ubuntu.com/ubuntu/ precise-backports main restricted universe multiverse
/etc/apt/sources.list:deb http://security.ubuntu.com/ubuntu precise-security main restricted
/etc/apt/sources.list:deb http://extras.ubuntu.com/ubuntu precise main
As I was able to install the openssh-server
package, here is the version table for that package:
apt-cache policy openssh-server
openssh-server:
Installed: 1:5.9p1-5ubuntu1
Candidate: 1:5.9p1-5ubuntu1
Version table:
*** 1:5.9p1-5ubuntu1 0
500 http://us.archive.ubuntu.com/ubuntu/ precise/main i386 Packages
100 /var/lib/dpkg/status
sudo apt-get update
and try again – jackweirdy Jan 29 '13 at 17:53grep -r ^deb\ .*main /etc/apt/sources.list*
andapt-cache policy openssh-server
? – gertvdijk Jan 29 '13 at 18:02