Forked from bmaupin/install-adobe-reader-9-ubuntu.sh
Last active
February 18, 2023 00:43
-
-
Save ricardodeazambuja/67f78c441a6cf754937d76f33d9615db to your computer and use it in GitHub Desktop.
Install Adobe Reader 9 on Ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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