Skip to content

Instantly share code, notes, and snippets.

@matog
Last active January 30, 2021 16:29
Show Gist options
  • Save matog/1d9d37e505586b645d3a16f6ea8dff6d to your computer and use it in GitHub Desktop.
Save matog/1d9d37e505586b645d3a16f6ea8dff6d to your computer and use it in GitHub Desktop.
Correr aplicativos de la Secretaría de Hacienda (OBIIE y SIDIF) en Linux
sudo dpkg -i ~/Descargas/icaclientWeb_19.12.0.19_amd64.deb
sudo apt-get -f install
sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts/
sudo c_rehash /opt/Citrix/ICAClient/keystore/cacerts/ /opt/Citrix/ICAClient/util/configmgr &
sudo rm -f /usr/lib/mozilla/plugins/npwrapper.npica.so /usr/lib/firefox/plugins/npwrapper.npica.so
sudo rm -f /usr/lib/mozilla/plugins/npica.so
sudo ln -s /opt/Citrix/ICAClient/npica.so /usr/lib/mozilla/plugins/npica.so
sudo ln -s /opt/Citrix/ICAClient/npica.so /usr/lib/firefox-addons/plugins/npica.so
sudo ls -al /opt/Citrix/ICAClient/wfica
SOURCE_URI="http://www2.mecon.gov.ar/camecon2/cacert.crt"
SOURCE_FN="$(basename ${SOURCE_URI})"
TARGET_DIR="/opt/Citrix/ICAClient/keystore/cacerts"
TARGET_FP="${TARGET_DIR}/${SOURCE_FN}"
sudo wget -c -O ${TARGET_FP} ${SOURCE_URI}
sudo ls -al ${TARGET_FP}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment