Duplicate?
In the linked question I've posted my sources.list
and it was deemed nothing out of the ordinary. So how could my question be a duplicate of fixing sources.list
? How is that even remotely helpful?
Original question:
I installed steam from their website. Steam wants to install a bunch of packages, and stops with this error:
Steam needs to install these additional packages:
libc6:amd64 libc6:i386 libegl1:amd64 libegl1:i386 libgbm1:amd64 libgbm1:i386 libgl1-mesa-dri:amd64 libgl1-mesa-dri:i386 libgl1:amd64 libgl1:i386 steam-libs-amd64:amd64 steam-libs-i386:i386
Press return to proceed with the installation:
......
Reading package lists... Done
Building dependency tree
Reading state information... Done
libegl1 is already the newest version (1.3.2-1~ubuntu0.20.04.1).
libegl1 set to manually installed.
libgbm1 is already the newest version (21.0.3-0ubuntu0.3~20.04.5).
libgbm1 set to manually installed.
libgl1 is already the newest version (1.3.2-1~ubuntu0.20.04.1).
libgl1 set to manually installed.
libgl1-mesa-dri is already the newest version (21.0.3-0ubuntu0.3~20.04.5).
libgl1-mesa-dri set to manually installed.
libc6 is already the newest version (2.31-0ubuntu9.3).
libc6 set to manually installed.
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6 : Breaks: libc6:i386 (!= 2.31-0ubuntu9.3) but 2.31-0ubuntu9.2 is to be installed
libc6:i386 : Breaks: libc6 (!= 2.31-0ubuntu9.2) but 2.31-0ubuntu9.3 is to be installed
E: Unable to correct problems, you have held broken packages.
Installing libc6-386 manually did not work either:
$ sudo apt install libc6-i386
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:
The following packages have unmet dependencies:
libc6-i386 : Depends: libc6 (= 2.31-0ubuntu9.2) but 2.31-0ubuntu9.3 is to be installed
E: Unable to correct problems, you have held broken packages.
Update:
$ apt policy libc6
libc6:
Installed: 2.31-0ubuntu9.3
Candidate: 2.31-0ubuntu9.3
Version table:
*** 2.31-0ubuntu9.3 100
100 /var/lib/dpkg/status
2.31-0ubuntu9.2 500
500 http://mx.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
2.31-0ubuntu9 500
500 http://mx.archive.ubuntu.com/ubuntu focal/main amd64 Packages
$ apt policy libc6-i386
libc6-i386:
Installed: (none)
Candidate: 2.31-0ubuntu9.2
Version table:
2.31-0ubuntu9.2 500
500 http://mx.archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages
2.31-0ubuntu9 500
500 http://mx.archive.ubuntu.com/ubuntu focal/main amd64 Packages
apt policy libc6
andapt policy libc6:i386
to your question please? I suspect a ppa is involved somewhere. – Organic Marble Dec 08 '21 at 00:05apt remove libc6
wants to remove a HUGE list of packages, warning me that essential packages are going to be removed! – user1785730 Dec 08 '21 at 00:49aptitude
runningsudo apt install aptitude
will install the package and then you could try installing your package again bysudo aptitude -f install libc6-i386
– Error404 Dec 08 '21 at 02:48focal-security
pocket. Also you should not have 2.31-0ubuntu9.3 libc, you should have 2.31-0ubuntu9.2. You have to trysudo aptitude install libc6=2.31-0ubuntu9.2
to fix current problem. – N0rbert Dec 08 '21 at 07:43sudo aptitude install libc6=2.31-0ubuntu9.2
– N0rbert Dec 09 '21 at 05:42