How To Execute bin Files In Linux

Hi linux geeks,

In this short tutorial I will teach you how to install .bin files in your Linux machine. Not scary terminal commands, I promise! But I will also show how to do it from the terminal.

What isĀ  a .bin file?

A .bin file is a self extracting binary file for Linux and Unix-like operating systems.Ā  Before executing a .bin file you need to give it executive permissions. This can be done from the terminal or from the gui. If you like to practise terminal commands then open a new terminal and run the following command to give the file execute permissions.

chmod +x filename.bin

The execute it with the following command.

./filename.bin

Make sure you are a superuser when typing the above commands.

How to do the same thing from the gui? Go to the folder where you have the .bin file and right click on it with your mouse, then go to properties like shown in the picture below.

Go to Permissions and tick Allow executing file as a program.

Double click the file and it will be executed. It is done.