How can I install .run files?
When I open them with the software center, I always get the message that the file couldn't be opened.
How can I install .run files?
When I open them with the software center, I always get the message that the file couldn't be opened.
.run
files usually are scripts. You should not install - execute any file - script outside of Ubuntu repositories, except if you trust 100% the source.
You can see the contents of the .run
file with an editor.
gedit <filename>.run
You can execute a .run
file from terminal (CTRL+ALT+T). First give the appropriate permissions. You have to connect to folder where the file is. I assume is in Downloads folder
cd Downloads
chmod +x <filename>.run
Then execute it with
./<filename>.run
or if needs root privileges (dangerous) , prefix with sudo
.sh
files, not.run
files. Because when he sees your comment, it's likely that he'll go like "what? But I have a.run
file". Point him to a question about.run
would've made more sense. – Alaa Ali Jun 09 '13 at 17:17