So, the only thing I can think of is that Ubuntu did not correctly install some software as it doesn't recognize .run files. I checked "allow to run as executable file", but nothing.
Asked
Active
Viewed 2,225 times
1 Answers
0
.runfiles are usually scripts. You can open them with text editor to see what is inside. In most cases, double clicking them should either run, or prompt asking you whether to run.
If the GUI does not provide an option to run them,
- Open a terminal ( Shortcut Ctrl+Alt+T )
- Change directory. Type
cd /path/to/fileand hit Enter ls -l <file-name>.runand see the output.- If you dont see a 'x' in the first collumn, Type
chmod +x <file-name>.runand hit Enter - If you see something like
-rwxrwxr-x, skip to next step.
This is to check if the file is executable, and make it if it is not.
- If you dont see a 'x' in the first collumn, Type
- Type
./<file-name>.runand hit Enter
-
when I use the ls -l
.run it shows verbatim: -rwxrwxrwx 1 zerik zerik 58529488 I follow using chmod +x, and it still says "cannot execute binary file – user79882 Jul 29 '12 at 02:32 -
The file has proper permissions set. The problem must be elsewhere. We need more information on what file this is, to help you. – Mahesh Jul 29 '12 at 03:50
-
I was trying to run my install.bin file by mouse click on the file. It has execution permission but still runs only from terminal command. If i remove .bin extension, it works fine. Any Idea ? – DTdev Jan 24 '17 at 06:32