0

I tried to install 32bit linux app (Cadsoft Eagle) on 64bit Ubuntu 15.10 via terminal. This was the result:

error while loading shared libraries: libssl.so.0.9.8: cannot open shared object file: No such file or directory

I already have installed many libraries for 32bit support.

When I try to install this package (sudo apt-get install libssl0.9.8:i386), the result is:

Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package libssl0.9.8:i386 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'libssl0.9.8:i386' has no installation candidate

What can I do?

1 Answers1

1

libssl0.9.8 is no longer available in ubuntu 15.10 repositories. You can download and install manually the deb file from this link if you want libssl0.9.8 (clic on the link "security.ubuntu.com/ubuntu" when you reach that page).

you can install the package downloaded by copying the deb file in your home folder, then open a terminal and enter this command sudo dpkg -i libssl0.9.8_0.9.8o-7ubuntu3.2_amd64.deb

Sidahmed
  • 1,146