1

I'm running Ubuntu 11.10 64-bit, and I cannot execute .run files. I get a message saying that there is no application installed to open the file.

htorque
  • 63,950
  • 40
  • 194
  • 219
psicofil
  • 11
  • 1
  • 2

1 Answers1

4

You have to mark a binary as executable before you can run it. This is just a permission on a file so we use chmod:

chmod +x your_file.run

And then run it:

./your_file.run
Oli
  • 289,791
  • 117
  • 680
  • 835