Skip to content

Instantly share code, notes, and snippets.

@hamletmun
Created April 2, 2025 00:19
Show Gist options
  • Save hamletmun/fcc01ed3ccffe7f36461a717fd3cbe50 to your computer and use it in GitHub Desktop.
Save hamletmun/fcc01ed3ccffe7f36461a717fd3cbe50 to your computer and use it in GitHub Desktop.
Ivanti Secure Access Client for Ubuntu

Ivanti

Ivanti Secure Access Client does not support latest Ubuntu

Ubuntu 22.04 Jammy Jellyfish

Workaround 1 - Add jammy temporarily

cat << EOF > /etc/apt/sources.list.d/jammy.list
deb http://archive.ubuntu.com/ubuntu jammy main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu jammy-backports main restricted universe multiverse
deb http://security.ubuntu.com/ubuntu/ jammy-security main restricted universe multiverse
EOF

apt update && apt install libicu70 libjavascriptcoregtk-4.0-18 libwebkit2gtk-4.0-37

rm /etc/apt/sources.list.d/jammy.list

Workaround 2 - Download specific deb packages

History since 2022
# latest
wget https://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu70_70.1-2ubuntu1_amd64.deb
wget https://archive.ubuntu.com/ubuntu/pool/main/w/webkit2gtk/libjavascriptcoregtk-4.0-18_2.48.0-0ubuntu0.22.04.1_amd64.deb
wget https://archive.ubuntu.com/ubuntu/pool/main/w/webkit2gtk/libwebkit2gtk-4.0-37_2.48.0-0ubuntu0.22.04.1_amd64.deb
sudo dpkg -i libicu70_70.1-2ubuntu1_amd64.deb libjavascriptcoregtk-4.0-18_2.48.0-0ubuntu0.22.04.1_amd64.deb libwebkit2gtk-4.0-37_2.48.0-0ubuntu0.22.04.1_amd64.deb

wget ps-pulse-linux-22.7r4-b30859-64bit-installer.deb
sudo dpkg -i ps-pulse-linux-22.7r4-b30859-64bit-installer.deb

Reference

https://4help.vt.edu/sp?id=kb_article_view&sysparm_article=KB0012678

wget https://secure.nis.vt.edu/resources/downloads/vpn/Ivanti_Dependencies-Ubuntu_24_04.tar.gz
tar xf Ivanti_Dependencies-Ubuntu_24_04.tar.gz
sudo dpkg -i libicu70_70.1-2_amd64.deb libjavascriptcoregtk-4.0-18_2.44.3-0ubuntu0.22.04.1_amd64.deb libwebkit2gtk-4.0-37_2.44.3-0ubuntu0.22.04.1_amd64.deb

wget https://secure.nis.vt.edu/resources/downloads/vpn/ps-pulse-linux-22.8r1-b31437-64bit-installer.deb
sudo dpkg -i ps-pulse-linux-22.8r1-b31437-64bit-installer.deb
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment