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 44,948 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.
Steps
-
1Press 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.
-
2Enter "
chmod +x yourfilename.run
" and press ↵ Enter. This will make your file executable.Advertisement -
3Enter "
.
/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 "
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.