I was installing some packages, 'create repo' I think. I guess this must have messed up my libc6 installation as now I am receiving a kernal panic when I restart my box. Complaining about missing libc6 libraries.
I've tried a couple of guides on the internet which said to download the right libc6.deb and extract to my root directoy using a livecd but it didn't change anything.
I have a livecd so can run commands from there.
A screenshot of the panic can be found here https://i.stack.imgur.com/WOzpb.jpg.
Thanks! Will
apt-get
? Were you using an external repo? What version of Ubuntu is this (looks like Saucy, which means there needs to be version 2.17)? Also, don't replacelibc6
manually, since everything depends on it. – saiarcot895 Jul 09 '14 at 14:49yum
working as root, or was it running under your username? – saiarcot895 Jul 09 '14 at 16:06yum
was using, but it probably realized thatcreaterepo
has dependencies that aren't fulfilled. (apt
andyum
are two completely different systems that happen to have somewhat-similar syntax, and it's not expected that a single system has both systems installed.) These dependencies probably went all the way up to thelibc
modules. Therefore, it installed those modules, overwriting the Ubuntu version and breaking compatibility with pretty much everything Ubuntu. – saiarcot895 Jul 09 '14 at 16:17yum
, I suggest you use it inside a CentOS chroot or (to be safe) in a VM. – saiarcot895 Jul 09 '14 at 16:19root@ubuntu:/# dpkg -i libc6_2.19-0ubuntu6_amd64.deb
dpkg: /lib64/libc.so.6: version `GLIBC_2.11' not found (required by dpkg)
dpkg: /lib64/libc.so.6: version `GLIBC_2.8' not found (required by dpkg)
dpkg: /lib64/libc.so.6: version `GLIBC_2.14' not found (required by dpkg)
dpkg: /lib64/libc.so.6: version `GLIBC_2.6' not found (required by dpkg) ......
Is there no way you can think of to get around the missing glibc_* not found errors, Can I install it from somewhere perhaps.Thanks
– Lewis Jul 09 '14 at 16:24