Installing Adobe Reader in Ubuntu

Adobe reader is a pretty useful software for opening PDF Files. There are a lot of alternatives available for Ubuntu. But this is good in terms of available features.
In this article, we are going to see how we can install adobe reader in Ubuntu.
Open your Terminal and run the following command one by one.
Downloading Adobe Reader deb package
wget ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb
Next, enable the i386 architecture
sudo dpkg --add-architecture i386
Now, update the local repository
sudo apt update
Install all the additional required packages
sudo apt install libxml2:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386 libatk-adaptor:i386
Finally, install all the downloaded adobe package
sudo dpkg -i AdbeRdr9.5.5-1_i386linux_enu.deb
This will install adobe reader on your ubuntu system.
Related Articles