okay I found the problem and the solution. With the reinstallation of the other version ldconfig was removed and then it could not complete the install because of failed dependancies. I found the solution:
1. Get hold of ldconfig & ldconfig.real from the correct version:
Code:
aptitude download libc6
unpack it:
Code:
dpkg-deb -x libc6*.deb libc6-unpacked/
copy them out:
Code:
sudo cp libc6-unpacked/sbin/ldconfig* /sbin/
At this point I did:
Code:
sudo apt-get -f install
sudo dpkg-reconfigure libc6
sudo dpkg-reconfigure libc6-i386
sudo apt-get install --reinstall libc6
sudo apt-get install --reinstall libc6-i386
I changed around the versions a little and had to add a line to sources.list but it solved my problem
