-2

The old recipes, that have worked for a while, like this one, this another and even this one no longer work.

Does anyone know how to instal it on modern distributions?

Observe that my question is NOT about installation of Windows software under Wine, it is about installing a Linux version of Acrobat Reader without using Wine.

1 Answers1

1

To install Adobe Acrobat 9:

Open the terminal and enter the following command:

wget -O ~/adobe.deb ftp://ftp.adobe.com/pub/adobe/reader/unix/9.x/9.5.5/enu/AdbeRdr9.5.5-1_i386linux_enu.deb

Enable i386 architecture enter the following command:

sudo dpkg --add-architecture i386
sudo apt update

Install all prerequisites by enter de following command:

sudo apt install libxml2:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386 libatk-adaptor:i386

Install the Adobe Acrobat Reader package downloaded previously, by enter de following command:

sudo dpkg -i ~/adobe.deb
kyodake
  • 17,808