Install & Execute BIN files in Linux: Ubuntu, CentOS & More

Do you need to install a program from a BIN file on your Linux system? Files ending with the .bin extension are typically installation binaries that you can execute to install a program. Before you can run a BIN install file, you'll need to make it executable using the chmod command or by changing its permissions in your desktop environment's file manager. This minHour article will teach you two simple ways to install a BIN file on any Linux distribution, including Ubuntu, Debian, CentOS, & Redhat.

From the Command Line

Download the BIN file to your computer.

If you’re downloading the file from the internet, you can save it to your default download location.

  • Check the installation directions for any files you download from the internet. Depending on the file, you may need to install it in a certain way—for example, some BIN installers must be run by specifying an installation directory.
  • If you downloaded a compressed file (such as a .tgz, .zip, or .tar.gz file), look for a “README” or “INSTALL” file after decompressing the file. Use the more command to open the file (e.g., more README) to look for specific instructions or dependencies.

Open a terminal window.

You can do this on most Linux distributions by pressing at the same time. Otherwise, click the icon in your app list.

Use the cd command to enter the directory to which you saved the BIN file.

For example, if you downloaded the file to the Downloads folder in your home directory, just type cd downloads.

  • If you don’t remember where you saved the file, you can use the locate or find commands to find it.

Type chmod +x filename.bin to make the file executable.

Replace filename with the name of the BIN file you downloaded, then press to run the command. This changes the file’s permissions so you can run it like a program.

Execute the file by placing .

/ before the file name. For example, to execute the file j2re-1_4_0-linux-i386.bin, you’d use ./j2re-1_4_0-linux-i386.bin. This runs the installation program.

  • If you need to install the program in a directory that requires root permissions (or you get a permissions error during installation), use su before the command. For example, su ./j2re-1_4_0-linux-i386.bin.

Follow the on-screen instructions to install.

Depending on the installer, you might see a graphical wizard that walks you through the installation, or an installation script may execute in the terminal window. Follow any on-screen prompts to install the software.

From the GUI / Desktop Environment

Open the directory that contains your BIN file.

If you don’t want to use the command line and are using a standard window manager like GNOME, KDE, or Cinnamon, you can make your BIN file executable and run it from the graphical user interface. Start by navigating to the BIN file in your file manager.

  • Check the installation directions for any files you download from the internet. Depending on the file, you may need to install it at the command line instead of your desktop environment so you can specify an installation directory.

Right-click the BIN file and select Properties.

You’ll see this option on the right-click menu.

Click the Permissions tab.

Depending on your window manager, you may already be on this tab. If not, click to get there.

Check the box next to “Allow executing file as program.”

This checkbox makes the file executable so you can run it like a program.

  • When you’re finished, click Close or the X to close the window and save your changes.

Double-click your BIN File to run it.

This will launch the installer, which should begin installing your software. Follow any on-screen instructions to complete the installation.

  • If you get an error, try running the bin file in a terminal window instead by typing ./filename.bin, replacing “filename” with the name of your bin file.

Tips

  • If the file you want to install is available as a package, it’ll be easier to install through the Ubuntu Software Center, Apt, or RPM.

Leave a Comment