Library faltando para o arquivo executável

2

Há um executável que baixei no meu Ubuntu 10.04 e não posso executá-lo porque falta uma biblioteca. Eu também tentei compilar a fonte com o CMake. Esta é a saída do meu Terminal:

zack@zack-laptop:~/Desktop$ ./MultiMC
./MultiMC: error while loading shared libraries: libssl.so.1.0.0:
cannot open shared object file: No such file or directory

Eu acho que preciso do libssl 1.0 para executar este arquivo, mas não tenho certeza. Alguma ajuda?

@Jim Salter: A saída de lsb_release -d ; apt-file update ; apt-file search libssl.so.1.0.0 é:

Description:    Ubuntu 10.04.4 LTS
apt-file is now using the user's cache directory.
If you want to switch back to the system-wide cache directory,
 run 'apt-file purge'
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 16.8M  100 16.8M    0     0   275k      0  0:01:02  0:01:02 --:--:--  171k
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid-updates/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 15.4M  100 15.4M    0     0   228k      0  0:01:09  0:01:09 --:--:--  346k
Downloading Index http://us.archive.ubuntu.com/ubuntu/dists/lucid/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
File is up-to-date.
Downloading Index http://us.archive.ubuntu.com/ubuntu/dists/lucid-updates/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid-updates/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0 15.4M    0     0    0     0      0      0 --:--:--  0:00:03 --:--:--     0
File is up-to-date.
Downloading Index http://us.archive.ubuntu.com/ubuntu/dists/lucid/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
File is up-to-date.
Downloading Index http://us.archive.ubuntu.com/ubuntu/dists/lucid-updates/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://us.archive.ubuntu.com/ubuntu/dists/lucid-updates/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0     0    0     0    0     0      0      0 --:--:--  0:00:01 --:--:--     0
File is up-to-date.
Ignoring source without Contents File:
  http://archive.canonical.com/ubuntu/dists/lucid/Contents-i386.gz
Downloading complete file http://security.ubuntu.com/ubuntu/dists/lucid-security/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
100 12.2M  100 12.2M    0     0   303k      0  0:00:41  0:00:41 --:--:--  367k
Downloading Index http://security.ubuntu.com/ubuntu/dists/lucid-security/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://security.ubuntu.com/ubuntu/dists/lucid-security/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0 12.2M    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
File is up-to-date.
Downloading Index http://security.ubuntu.com/ubuntu/dists/lucid-security/Contents-i386.diff/Index:
No Index available.
Downloading complete file http://security.ubuntu.com/ubuntu/dists/lucid-security/Contents-i386.gz
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed
  0 12.2M    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
File is up-to-date.
Ignoring source without Contents File:
  http://dl.google.com/linux/chrome/deb/dists/stable/Contents-i386.gz
Ignoring source without Contents File:
  http://ppa.launchpad.net/nilarimogard/webupd8/ubuntu/dists/lucid/Contents-i386.gz
    
por user1610406 24.11.2012 / 20:22

2 respostas

7

you@box:~$ locate libssl.so.1.0.0

Na minha máquina, isso retorna /lib/i386-linux-gnu/libssl.so.1.0.0 e /lib/x86_64-linux-gnu/libssl.so.1.0.0 . Assim. Essa coisa que você está tentando executar - é código de 32 bits ou código de 64 bits? Assumindo que é o primeiro:

you@box:~/Desktop$ mkdir ~/MultiMC
you@box:~/Desktop$ mv MultiMC ~/MultiMC
you@box:~/Desktop$ cd ~/MultiMC
you@box:~/MultiMC$ ln -s /lib/i386-linux-gnu/libssl.so.1.0.0 ./
you@box:~/MultiMC$ ./MultiMC

E o Bob deve ser o seu tio. (O problema é que o seu "MultiMC" não sabe onde procurar pela biblioteca, mesmo que esteja realmente presente no seu sistema. Em teoria, se você tiver acesso ao código-fonte - ou se este é apenas um script para começar com - você também pode apenas editar o próprio aplicativo para procurar a biblioteca no lugar certo.

E se você NÃO tiver libssl.so.1.0.0 em primeiro lugar? Bem, neste caso você quase certamente faz. Mas talvez haja outra biblioteca que você precisa e não pode encontrar depois de satisfazer essa, e você acaba não tendo essa ...

you@box:~/MultiMC$ sudo apt-get install apt-file
you@box:~/MultiMC$ sudo apt-file update
you@box:~/MultiMC$ sudo apt-file search libssl.so.1.0.0

E você pode instalar qualquer pacote que contenha a biblioteca que você precisa. Sempre verifique primeiro se você já tem a biblioteca e não sabe onde encontrá-la! =)

    
por Jim Salter 24.11.2012 / 20:44
3

Sim, tente executar isso em um terminal:

sudo apt-get install libssl1.0.0

Se você estiver executando o multiarch, tente o seguinte:

sudo apt-get install libssl1.0.0 libssl1.0.0:i386

Veja se funciona:)

    
por MiJyn 24.11.2012 / 20:26