wikiHow is a “wiki,” similar to Wikipedia, which means that many of our articles are co-written by multiple authors. To create this article, volunteer authors worked to edit and improve it over time.
This article has been viewed 116,165 times.
Learn more...
.RUN files usually contain program data and installation instructions for Linux programs. This wikiHow teaches you how to execute .RUN files in Linux using the Ubuntu terminal. Since RUN files install software, make sure it's legitimate and won't harm your computer before executing it. RUN files from suspicious links can contain malware and damage your computer.
Running a .RUN File in Linux
Press Ctrl+Alt+T and find the folder with the file you want to run. Then, type "chmod +x yourfilename.run" and press “Enter.” Type "./yourfilename.run" and press “Enter” to run the file.
Steps
-
Press Ctrl+Alt+T to open a Terminal window and navigate to the folder where your .RUN file is. You can also search for Terminal in the "dash" bar on the left side of your screen by clicking the "All Applications" icon.
-
Enter "
chmod +x yourfilename.run
" and press ↵ Enter. This will make your file executable.Advertisement -
Enter "
.
/yourfilename.run" and press ↵ Enter. This command will execute your RUN file.- If you get a "Permission denied" error during this process, add "
sudo
" to the beginning of the code so it will run with the appropriate permissions.[1]
- If you get a "Permission denied" error during this process, add "
Expert Q&A
Tips
References
About This Article
1. Open the Terminal.
2. Type "cd" followed by the path of the file and press Enter.
3. Type "sudo chmod +x " to change allow yourself permission to edit the file.
4. Type "./" to run the file.