executando um executável de 64 bits em um lúcido de 64 ubuntu

7

Eu tenho um Ubuntu 10.04 64 bits e estou tentando iniciar um executável de 64 bits sem sorte:

./lmrand1
-bash: ./lmrand1: No such file or directory    

ls -la lmrand1
-rwxr-xr-x 1 ysagon ysagon 191872 2011-09-05 18:13 lmrand1

file lmrand1
lmrand1: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked 
(uses sharedlibs), for GNU/Linux 2.6.9, stripped

Estou em um Ubuntu de 64 bits também:

uname -a
Linux dev 2.6.32-33-server #72-Ubuntu SMP Fri Jul 29 21:21:55 UTC 2011 x86_64 GNU/Linux

O executável não está corrompido, eu posso iniciá-lo em uma empresa redhat. Alguém sabe o que está acontecendo?

editar: desculpe, eu esqueci de colocar a saída do ldd

ldd lmrand1
    linux-vdso.so.1 =>  (0x00007fffabdff000)
    libpthread.so.0 => /lib/libpthread.so.0 (0x00007fe8d176c000)
    libm.so.6 => /lib/libm.so.6 (0x00007fe8d14e9000)
    libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x00007fe8d12d1000)
    libc.so.6 => /lib/libc.so.6 (0x00007fe8d0f4e000)
    libdl.so.2 => /lib/libdl.so.2 (0x00007fe8d0d4a000)
    /lib64/ld-lsb-x86-64.so.3 => /lib64/ld-linux-x86-64.so.2 (0x00007fe8d19a4000)
    
por Yann Sagon 06.09.2011 / 10:27

1 resposta

8

Tente instalar o pacote Linux Standard Base (lsb).

sudo apt-get install lsb
    
por Sagebrush GIS 12.12.2011 / 17:40

Tags