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,396 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