0

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.

1 Answers1

0

.run files 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/file and hit Enter
  • ls -l <file-name>.run and see the output.
    • If you dont see a 'x' in the first collumn, Type chmod +x <file-name>.run and 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.
  • Type ./<file-name>.run and hit Enter
Mahesh
  • 12,738
  • 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