First of all go here /lib/x86_64-linux-gnu
move these files to /root
: libc-2.17.so
libdl-2.17.so
libm-2.17.so
libpthread-2.17.so
librt-2.17.so
bash
Commands to go into the directory /lib/x86_64-linux-gnu
and copy the files to /root
,post
sudo -s cd /lib/x86_64-linux-gnu cp libc-2.17.so /root cp libdl-2.17.so /root cp libm-2.17.so /root cp libpthread-2.17.so /root cp librt-2.17.so /root
Then you need to launch bash with predefined LD_PRELOAD
:ui
LD_PRELOAD=/root/libc-2.17.so:/root/libdl-2.17.so:/root/libm-2.17.so:/root/libpthread-2.17.so:/root/librt-2.17.so bash
Commands to remove the files in /lib/x86_64-linux-gnu
directory,code
rm libc-2.17.so rm libdl-2.17.so rm libm-2.17.so rm libpthread-2.17.so rm librt-2.17.so
after that dist-upgrade
or fix-missing package
will works:orm
apt-get -f install
ORci
apt-get -f dist-upgrade