Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricardodeazambuja/67f78c441a6cf754937d76f33d9615db to your computer and use it in GitHub Desktop.
Save ricardodeazambuja/67f78c441a6cf754937d76f33d9615db to your computer and use it in GitHub Desktop.
Install Adobe Reader 9 on Ubuntu
# Cache sudo password
sudo -v
# Enable installation of 32-bit packages
sudo dpkg --add-architecture i386
# Install Adobe Reader
wget ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb
sudo dpkg -i AdbeRdr9.5.5-1_i386linux_enu.deb
# Manually install dependencies (other methods like using apt to install it didn't install dependencies...)
sudo apt-get install libxml2:i386 libgdk-pixbuf2.0-0:i386 libcanberra-gtk-module:i386 libatk-adaptor:i386 gtk2-engines-pixbuf:i386
echo "If you decide to remove it:"
echo "$ sudo apt remove adobereader-enu"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment