How to install Adobe Reader on Ubuntu

adobe reader 11

Format Adobe Acrobat is still a widely used standard when publishing documents on the web. In addition, it allows to preserve the properties of a document regardless of the system where we open it, which makes it the ideal format for layouts. Initially developed by the Adobe company, there are currently many programs that allow emulating the functions of the original Adobe Reader.

Over the years, PDF files have been incorporating certain characteristics of their own through scripts that improve the functionality of documents. From form validation to the ability to render 3D and CAD objects, these capabilities exist only in the original Adobe Reader program that, with the guide that we present below, We will teach you how to install it on your Ubuntu system.

Installation in the system

We will start by installing the packages required to run Adobe Reader. We will enter the following command through the terminal console:

sudo apt-get install gtk2-engines-murrine:i386 libcanberra-gtk-module:i386 libatk-adaptor:i386 libgail-common:i386

Next, we must write the following sequences for the installation of Adobe Reader:

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

sudo apt-get update

sudo apt-get install adobereader-enu

After installation, it is necessary to add a specific repository to the system through the following commands:

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

sudo apt-get update

Setting Adobe Reader as the default reader

The next step we can take within the system is set the Adobe Reader program as the default PDF document reader. To do this, we will edit the file located in the path /etc/gnome/defaults.list through:

sudo gedit /etc/gnome/defaults.list

Inside, we must look for the following line: application / pdf = evince.desktop, and modify it by application / pdf = acroread.desktop. In addition, we must introduce the following set of lines at the end of the file:

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

Save the file, exit and restart Nautilus using the command:

nautilus -q

Source: Ubuntu geek.