Ubuntu – How to install Adobe Acrobat Reader from the repository

adobe-readersoftware installation

How do I install Adobe Acrobat Reader in Ubuntu 14.04 using a Trusty apt repository?

This is NOT a duplicate of How do I install Adobe Acrobat Reader deb package downloaded from Adobe website?. In Synaptic > Repositories > Other software I enabled "Canonical Partners", but I still cannot install acroread as it is not available on my 64-bit system.

Here's the output from the console:

root@liv-inspiron:/home/liv# apt-get install acroread
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package acroread
root@liv-inspiron:/home/liv# apt-get install acroread:i386
Reading package lists... Done
Building dependency tree       
Reading state information... Done
E: Unable to locate package acroread

Best Answer

It's a bit more manual to install Adobe Acrobat Reader in Ubuntu 14.04, but it's not hard.

Open a terminal.

Type:

cd ~/Downloads && wget -c http://ardownload.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb

That downloads the DEB file from Adobe and puts it into your Downloads folder. Next type:

sudo dpkg -i AdbeRdr9.5.5-1_i386linux_enu.deb

That will install Adobe Acrobat Reader.

If you are on a 64 Bit machine, you may need to add the missing libraries that Nim mentioned:

sudo apt-get install libgtk2.0-0:i386 libnss3-1d:i386 libnspr4-0d:i386 lib32nss-mdns libxml2:i386 libxslt1.1:i386 libstdc++6:i386

If you want Acrobat Reader as your default application for PDF's, then type:

mimeopen -d *.pdf

It will display a list of programs (it displayed 3 for me). Select the number that has Acrobat Reader. It will open Acrobat Reader and say it can't open '*.pdf'. Ignore that error and close Adobe Reader. You should be set now.

UPDATE:

For 18.04, the i386 files get installed this way:

sudo apt-get install libgtk2.0-0:i386 libnss3:i386 libnspr4:i386 libnss-mdns libxml2:i386 libxslt1.1:i386 libstdc++6:i386
Related Question