3

when I try running a program file downloaded in terminal ubuntu 18.04 by ./filename.exec Input.data as per the program user manual, it says no such file or directory, but when I do ls, ls -l , it shows the file in executable state, but still does not run...why? can anyone help me, being a newbie in bioinformatics. The program file contains executable file and input files.

$ pwd
/home/ubuntu/Downloads/program_directory
$ file ./filename.exec Input.data
./filename.exec: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked, interpreter /lib/ld-, for GNU/Linux 2.6.15, BuildID[sha1]=41506b3ff2b0a8a1a10c2d856fc68be667a93df3, not stripped` 
Input.data:                  ASCII text
$ ./filename.exec Input.data
bash:No such file or directory
$ ldd sRNAscanner_Ubuntu10.exec | grep not
    not a dynamic executable

I even tried running as root, but same response

muru
  • 197,895
  • 55
  • 485
  • 740
Madhu
  • 31

1 Answers1

1

You have to start by installing main 32-bit C library:

sudo apt-get install libc6:i386
N0rbert
  • 99,918