Tell me more ×
Ask Ubuntu is a question and answer site for Ubuntu users and developers. It's 100% free, no registration required.

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.

share|improve this question

1 Answer

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
share|improve this answer
1  
And make sure you're not running it from a removable media. – alex Oct 15 '11 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.