I am new to Ubuntu, but I believe I have Ubuntu 11.10 installed correctly. I am trying to install Acroread using AdbeRdr9.4.6-1_i386linux_enu.deb that I downloaded from the Adobe web site. How do I do this?
- 69,112
- 941
9 Answers
All Ubuntu versions prior to 13.10
To install Adobe Acrobat you will need to enable the canonical partners repository in the Software Sources tab of Update Manager

Use Dash and search for Software Sources or Software & Updates in 13.04 and later.
If you don't see those options in Software Sources, you can use the following command from a terminal:
sudo add-apt-repository "deb http://archive.canonical.com/ $(lsb_release -sc) partner"
Then in a terminal you can update and install acrobat reader:
sudo apt-get update
sudo apt-get install acroread
It is strongly recommended from a security point-of-view to use the version in the repositories.
If - for whatever reason - you wish to download directly from Adobe and install then the following instructions apply:
Using firefox navigate to:
Choose the following options as shown in the image - i.e. download the .deb package

When the Download button is clicked:

Leave it at the default to open in Software Center where you can install it.
If you have set your downloads to automatically save in your Downloads folder:
cd ~/Downloads
sudo dpkg -i AdbeRdr*.deb
- 174,526
REVISED: 2016-Nov (minor wording only)
For Ubuntu 14.04 LTS, 16.04 LTS and 16.10, 32- or 64-bit
[ adapted from: http://ask.xmodulo.com/install-adobe-reader-ubuntu-13-10.html ]
Adobe Reader 9 is not in the 'Partner' repository for 13.10 (or later).
Download Adobe Reader (32-bit), from Adobe site:
From here: ftp.adobe.com .. reader .. 9.5.5
Check MD5SUM after downloading, input
md5sum AdbeRdr9.5.5-1_i386linux_enu.debthe output should be
88036c68998d565c4365e2ad89b04d51 AdbeRdr9.5.5-1_i386linux_enu.debOpen a command line, change to the directory containing the .deb file.
Install package, forcing to accept 32-bit version and any errors:
sudo dpkg -i --force-architecture AdbeRdr9.5.5-1_i386linux_enu.deb sudo apt-get -f installAdd the missing 32-bit libraries: (skip this step for 32-bit)
sudo apt-get install libxml2:i386 lib32stdc++6(Optional) Run for first time, to get icon in Unity menu bar.
acroread <path>/<MyDocument>.pdf
For Ubuntu 12.04 LTS
Add 'Canonical Partner' repository
sudo add-apt-repository "deb http://archive.canonical.com/ubuntu $(lsb_release -sc) partner"Update your system
sudo apt-get updateInstall Adobe Reader, and font extensions
sudo apt-get -y install acroread acroread-fonts(Optional) Run for first time, to get icon in Unity menu bar.
acroread <path>/<MyDocument>.pdf
For saucy (13.10), you can include the raring partner repository. This is how I did it:
sudo echo -e '# for acroread\ndeb http://archive.canonical.com/ubuntu/ raring partner' > /etc/apt/sources.list.d/raring-partner.list
sudo apt-get update
sudo apt-get install acroread
apt-cache show acroread
# Package: acroread
# Architecture: amd64
# Version: 9.5.5-1raring1
# Depends: debconf (>= 0.5) | debconf-2.0, acroread-bin, nspluginwrapper
# [...]
apt-cache policy acroread
# acroread:
# Installiert: 9.5.5-1raring1
# Installationskandidat: 9.5.5-1raring1
# Versionstabelle:
# *** 9.5.5-1raring1 0
# 500 http://archive.canonical.com/ubuntu/ raring/partner amd64 Packages
# 100 /var/lib/dpkg/status
- 111
I combined above methods and so I can install Adobe Acrobat Reader on
Ubuntu 16.04 LTS Xenial Xerus and Ubuntu 18.04 LTS Bionic Beaver:
cd ~/Downloads
wget ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb
sudo apt-get -y install libxml2:i386 libcanberra-gtk-module:i386 \
gtk2-engines-murrine:i386 libatk-adaptor:i386 gtk2-engines:i386
sudo apt-get install ./AdbeRdr9.5.5-1_i386linux_enu.deb
Then one can launch it with acroread.
Note: what makes Adobe Reader almost unique and useful - it is its search in files (accessed by pressing Ctrl+Shift+F).
- 103,263
It seems that Adobe is not going to support linux in the near future (see post here), unless there is an increase in numbers of linux users requesting support. This can be done via filling the following Adobe feature request form: Feature Request/Bug Report Form.
As an alternative, you may want to switch to Foxit or master pdf readers, who are actually faster to open and provide more free features than Adobe reader.
- 63
Ubuntu 16.10 on amd64 seems to require
sudo apt-get -f install
sudo apt-get -y install adobereader-enu
Without i386 in 64-bit env acroread gives file not found and GTK errors, so run:
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get -y install libc6:i386 libncurses5:i386 libstdc++6:i386 libglib2.0-0:i386 libsoup2.4-1:i386 libgtk2.0-0:i386
sudo apt-get -y install libicu-dev:i386 gtk2-engines-murrine libcanberra-gtk-module:i386 gtk2-engines-murrine:i386
This may be redundant as main bin is i386
sudo apt-get -y install gtk2-engines gtk2-engines-* libgtkmm-2.4-1c2 libcanberra-gtk-module
Acroread is now available in Quantal's partner repo.
See this Launchpad bug:
It says Precise in the title, but it applies to precise, quantal and raring.
- 7,396
NOrbert's answer worked for me, but only when I added the --reinstall option when installing the acroread package.
sudo apt-get install --reinstall ./AdbeRdr9.5.5-1_i386linux_enu.deb
- 1,156
- 6
- 15
- 21
- 121
- 6
You can do:
# sudo dpkg -i AdbeRdr9.4.6-1_i386linux_enu.deb
But I recommend evince as better pdf reader. It's the default in quantal.
- 23,540