144

I want to update Acrobat Reader for Firefox, but the download has the .bin extension. How can I install it?

Braiam
  • 69,112

8 Answers8

188

Go into a terminal and issue the following command in the directory where the bin file is,

chmod a+x name_of_file.bin

Then run it by writing

./name_of_file.bin

If you get a permission error and/or you're dealing with an installer that applies system-wide changes you might have to launch your application with root privileges:

 sudo ./name_of_file.bin
Glutanimate
  • 21,763
karthick87
  • 84,513
21

Right click and select properties then go to permissions tab and tick allow excecuting.

enter image description here

Now double click the file and select run.

Some binaries require to be run from a terminal. If that's the case with your .bin file and/or nothing happens after double-clicking, drag the file into a new terminal window and run it by pressing 'Return'. The output should give you a clue on what's wrong.

Glutanimate
  • 21,763
Lincity
  • 25,749
11

If you want to globally install any binary, use the install command.

sudo install ./mybin /usr/bin/

The install command is used to copy files, and it does so by combining several commands into one to make them easy to use, i.e. cp, chown, chmod, and strip.

CPPUIX
  • 137
q9f
  • 1,261
  • 4
  • 18
  • 30
4

I want to update the Acrobat reader for firefox.

Adobe Reader is available in the Software Center.

2

Important note: This is only relevant for packages that don't have a 64-bit version (e.g. Acrobat Reader). Installing ia32-libs is not required if you can download a 64-bit executable and/or are running a 32-bit system in the first place.


If your 64-bit Ubuntu doesn't have the following package installed , you will not able to access Acrobat Reader.

Follow the steps below:

sudo apt-get install ia32-libs
chmod a+x yourfile.bin
sudo ./yourfile.bin
Glutanimate
  • 21,763
2

change permission of your file to executable by using terminal

copy your .bin or .run file to any location and then open terminal

In terminal type ls and it will show all files in that directory then change permission by root as show below

sudo su

chmod a+x filename.bin

then

./filename.bin 

in this way you can run bin or run files in your ubuntu

gman
  • 2,324
2

solution that works for me:

sudo bash xxx.bin
Dika
  • 121
0

First of all go to location of file

like if your file is your downloads then open terminal and follow below steps

acer@acer-TravelMate-P243:~$cd ~
acer@acer-TravelMate-P243:~$cd /home/user/Downloads

then change the persmissions of the .bin file to execute by terminal

acer@acer-TravelMate-P243:~$chmod a+x ./filename.bin -R 

now you can run that file through terminal

acer@acer-TravelMate-P243:~$./filename.bin