Archives For November 30, 1999

How to Install Adobe Reader in Ubuntu 14.10

Last updated: October 2, 2014

adobe reader ubuntu 14.10

Adobe Reader for Linux is no longer available for download from Adobe website. But we can still install it in Ubuntu through the old Canonical Partners repository.

Adobe has recently removed the Linux support from its official download page. Actually the latest “AdbeRdr9.5.5-1_i386linux_enu.deb” package is still available in the official repository, but it might be removed in near future.

If you still want this PDF reader, below is how to install Adobe Reader (Acroread) 9 in Ubuntu 14.10 from the Canonical Partners repository for Precise (12.04).

1. Open up terminal by pressing Ctrl+Alt+T on keyboard. When it opens, paste the command below and hit enter to add the repository:

sudo add-apt-repository "deb http://archive.canonical.com/ precise partner"

Type in your user password when it asks. Note that there’s no visual feed back when you typing a password.

2. After you added the repository, update package lists and install the acroread package by running below commands one by one:

sudo apt-get update

sudo apt-get install acroread

Once installed, you should be able to open it from Unity dash or Application menu.

3 After properly installed Adobe Reader, don’t forget to remove the Canonical Partners repository for Precise:

sudo add-apt-repository -r "deb http://archive.canonical.com/ precise partner"

sudo apt-get update

4. How to Set Adobe Reader as default PDF reader:

Run command below in terminal to edit the config file:

sudo gedit /etc/gnome/defaults.list

When the file opens, do:

  • Find out and change the line

    application/pdf=evince.desktop

    into:

    application/pdf=acroread.desktop

  • Add below line into the end:

    application/fdf=acroread.desktop
    application/xdp=acroread.desktop
    application/xfdf=acroread.desktop
    application/pdx=acroread.desktop

Finally save the file and restart nautilus (run command nautilus -q in terminal) to apply changes.

Adobe Reader was available in Canonical Partners repository then dropped since Ubuntu 13.10 Saucy. This tutorial will show you how to install Adobe PDF Reader in Ubuntu 14.04 LTS from the official package.

UPDATE 2024: This tutorial is outdated! For all current Ubuntu releases, see this one instead!

Tutorial Objectives:

  • Install Adobe Reader in Ubuntu 14.04
  • Enjoy!

To get started:

1. Download the DEB package:

Adobe Reader 9.5.5 enu

2. Install Gdebi to handle the DEB package. Press Ctrl+Alt+T on keyboard to open the terminal. When it opens, paste the command below and run:

sudo apt-get install gdebi

3. Now install the package via Gdebi. It’ll also install the dependencies.

cd ~/Downloads && sudo gdebi AdbeRdr9.5.5-1_i386linux_enu.deb

4. If Adobe Reader is still missing libraries after installation. Run the command below to install them:

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

That’s it. Enjoy!

(Optional) To remove Adobe Reader:

sudo apt-get remove acroread; sudo apt-get autoremove

This quick tip is going to show beginners how to install Adobe Reader 9 in Ubuntu 13.10 Saucy Salamander.

Adobe Reader is available in Canonical Partners repository for Ubuntu 13.04 Raring and earlier. At the moment the repository is not ready for Ubuntu 13.10. So this tutorial will show you how to install it via the official DEB package.

1.) Click to download the DEB for Adobe Reader

2.) Press Ctrl+Alt+T on your keyboard to open terminal. When it opens, run below command to install it:

For 32-bit system:

sudo dpkg -i ~/Downloads/AdbeRdr9.5.5-1_i386linux_enu.deb; sudo apt-get -f install

For 64-bit system:

UPDATE: the easier way to install Adobe Reader DEB on 64 bit Ubuntu is using Gdebi, which will automatically install all dependencies.

sudo apt-get install gdebi

sudo gdebi AdbeRdr9.5.5-1_i386linux_enu.deb

Once installed, open Adobe Reader from Unity Dash or right-click your PDF files to open it via Adobe Reader.

UPDATE 1: Thanks for your comments! I’ve rewritten a clean tutorial about how to install this in Ubuntu 14.04 Trusty.

If you’ve already followed previous steps, run the below command to install required libraries should make the Adobe Reader work (Thanks to osman):

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