This wikiHow teaches you how to run files in Linux. You can run most files using a file manager program. Most Linux distributions have a default File Manager that comes pre-installed. You can also use the Terminal to run a file in Linux. This is the preferred method for running ".run", ".sh", and ".bin" files.

Method 1
Method 1 of 2:

Using a File Manager

  1. 1
    Open a file manager application. Most Linux distributions come with a default file manager program. This may be Nautilus, Thunar, Dolphin, Krusader, Konqueror, or PCManFM. Most of these programs work very similarly. To open your file manager, click the icon that resembles a file cabinet, or a folder that says "Home" on your desktop, dock, or Activities menu.[1]
    • If you are not sure where to locate your file browser app, you can press the Super (Windows) key and type "Files" (or the name of the file manager) in the search bar.
    • If you don't like the file manager that came with your Linux distribution, you can install a different file manager in the Terminal. To do so on Debian/Ubuntu, open the Terminal and type sudo apt install <app name> and press Enter. On Fedora, open the Terminal and type sudo dnf install <app name> and press Enter. Replace "<app name>" with the name of the app you want to install.[2]
  2. 2
    Navigate to the folder the file is located in. Most file managers have a large panel that allows you to browse folders. Double-click a folder to open it. Navigate to the folder with the file you want to run.
    Advertisement
  3. 3
    Right-click the file you want to run. This displays a drop-down menu.
    • Alternatively, you can double-click the file to run it using the default application that the file type is associated with.
  4. 4
    Click Open With or Open With Other Appllicaiton. This displays a list of applications you can use to run the file.
  5. 5
    Double-click the application you want to run the file with. This runs the file in the application you choose.
    • If you don't see the application you use to run the file, click View All Applications or Other. This displays a list of all installed apps categorized by type. Click the category of the app you want to run the file in. Then double-click the app you want to run the file in.
  6. Advertisement
Method 2
Method 2 of 2:

Using the Terminal

  1. 1
    Press Ctrl+Alt+T to open the Terminal. You can open the Terminal by clicking the icon that resembles a black screen with a white text cursor in your Apps menu, or by press Ctrl+Alt+T on your keyboard.
  2. 2
    Change the directory to the folder with the file you want to run. To change the directory in the Terminal, type cd followed by the path of the directory and press Enter.
    • For example, if the file is in your documents folder, you would type cd /Documents.
  3. 3
    Type sudo chmod +x <filename> and press Enter. Replace "<filename>" with the actual name of the file (it cannot contain any spaces). This command sets the user permissions so that you can run and edit the file.
    • If asked to do so, enter the password you use to log into your Linux computer and press Enter.
  4. 4
    Type the command to run the file. The command you use to open the file is going to be a different depending on the file type. Enter one of the following commands and press Enter to run the file. Replace "<filename>" with the actual filename for the file (i.g. "textfile.txt"). The filename cannot have any spaces. The following are some commands you can use to run a file in the Terminal:
    • Run a file:sudo ./<filename>. This includes ".sh", ".run", and ".bin" files.
    • Open a file in it's default application: xdg-open <filename>
    • Display an image file: display <filename>. You must have ImageMagick installed.[3]
    • Display a text file in the Terminal: cat <filename>.
    • Display a text file one page at a time: less <filename>
    • Display a text file with numbered lines: nl <filename>[4]
  5. Advertisement

About This Article

Travis Boylls
Written by:
wikiHow Technology Writer
This article was co-authored by wikiHow staff writer, Travis Boylls. Travis Boylls is a Technology Writer and Editor for wikiHow. Travis has experience writing technology-related articles, providing software customer service, and in graphic design. He specializes in Windows, macOS, Android, iOS, and Linux platforms. He studied graphic design at Pikes Peak Community College. This article has been viewed 66,589 times.
How helpful is this?
Co-authors: 5
Updated: February 22, 2023
Views: 66,589
Article SummaryX

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.

Did this summary help you?
Advertisement