16

I use:

apt-get remove 

To remove some software, but it displays:

error:E: Internal Error, No file name for libssl1.0.0 .

I also try this to resolve the error:

wget http://launchpadlibrarian.net/102991621/libssl1.0.0_1.0.0e-2ubuntu4.5_i386.deb
sudo dpkg -i libssl1.0.0_1.0.0e-2ubuntu4.5_i386.deb

But it also gives an error :

 libssl1.0.0:i386 1.0.0e-2ubuntu4.5 cannot be configured because libssl1.0.0:amd64 is in a different version (1.0.1-4ubuntu5.3)

I want know the correct way to solve this problem.

Kevin Bowen
  • 20,055
  • 57
  • 82
  • 84
yue
  • 161

5 Answers5

23

For me this works:

sudo dpkg --configure -a

Src: E: dpkg was interrupted... run 'sudo dpkg --configure -a'

Reboot then,

apt-get update
apt-get upgrade

I hope it works for you too!

8

I also encountered this error on Ubuntu 12.04. I fixed it with the following commands:

sudo apt-get update
sudo apt-get clean
sudo apt-get install -f
sudo dpkg -i /var/cache/apt/archives/*.deb
sudo dpkg --configure -a
sudo apt-get install -f
sudo apt-get dist-upgrade
mchid
  • 44,904
  • 8
  • 102
  • 162
7

use dpkg -i on both of these:

http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.3_i386.deb
http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.0.0_1.0.1-4ubuntu5.3_amd64.deb
Thomas Ward
  • 78,878
user72421
  • 3,711
2

My problem stemmed from an unmet dependency for rhythmbox. Just the following 3 commands got rid of the dependency and error. These are from a previous posting.

error: E: Internal Error, No file name for libssl1.0.0

I just entered

sudo apt-get update
sudo apt-get clean
sudo apt-get install -f
mchid
  • 44,904
  • 8
  • 102
  • 162
ratman
  • 21
0

If the suggestion

sudo dpkg --configure -a

does not work for you, try to reinstall both packages libssl1.0.0:i386 and libssl1.0.0:amd64. You might have to force this because you temporarily break dependencies until these packages will have been reinstalled with the fourth of the followting command:

sudo dpkg --purge --force-depends libssl1.0.0:i386
sudo dpkg --purge --force-depends libssl1.0.0:amd64
sudo dpkg --configure -a
sudo apt-get -f install
Alex1357
  • 1,192