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
ldd filename.exec | grep not
- add this output to the question by editing it. – N0rbert Jun 20 '20 at 08:16interpreter /lib/ld-
in the output offile
? Or is that a copy-paste error? – muru Jun 20 '20 at 09:23