OPERATING SYSTEMSOS Linux

Como instalar Adobe Reader 9 en Ubuntu Linux 20.04 LTS

Blog.
https://oscaromarposadasanchez.blogspot.com/

Shell de ejecución.
#!/bin/bash
echo “Inicia Instalación de programa Adove Reader para Ubuntu Linux 20.04 LTS”
echo “Descargando archivos”
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
echo “Agregando arquitectura i386”
sudo dpkg –add-architecture i386
echo “Actualizando”
sudo apt update
echo “Inicia instalación de requerimientos previos”
sudo apt install libxml2:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386 libatk-adaptor:i386
echo “Inicia Instalación de Adobe Reader”
sudo dpkg -i ~/adobe.deb

source

ubuntu

Leave a Reply

Your email address will not be published. Required fields are marked *