Linux Commands – Run .bin file in Linux / UNIX
Run .bin file in Linux / UNIX
Change the permission of the file you downloaded to be executable by typing the following command:
$ chmod +x file.bin
Start the installation process or run .bin file by typing the following command:
$ sudo ./file.bin
For example if .bin file name is program.bin. Then type the following commands:
$ chmod +x program.bin
$ sudo ./program.bin
Leave a Reply
Want to join the discussion?Feel free to contribute!