I’m trying to install nspluginwrapper using this from various tutorials I’ve found:
sudo apt-get install -y nspluginwrapper
But I get this:
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package nspluginwrapper
I tried to go to their website (http://nspluginwrapper.org/) and it seems down. Does this not exist anymore? I believe I need it in order to install a Citrix receiver.
I’m using 64 bit Ubuntu 20.04
>Solution :
Latest version of Citrix Receiver 13.10 does not require Netscape Plugins.
Visit above page and then download Debian Package → Full Packages (Self-Service Support), the file named icaclient_13.10.0.20_amd64.deb will be placed in your ~/Downloads folder. It may be installed on 18.04 LTS directly.
On Ubuntu 20.04 LTS you need to install it with dependencies using below commands:
cd ~/Downloads
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/universe/w/webkitgtk/libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb
wget -c http://archive.ubuntu.com/ubuntu/pool/main/i/icu/libicu60_60.2-3ubuntu3.2_amd64.deb
sudo apt-get install ./icaclient_13.10.0.20_amd64.deb ./libwebkitgtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libjavascriptcoregtk-1.0-0_2.4.11-3ubuntu3_amd64.deb ./libicu60_60.2-3ubuntu3.2_amd64.deb
For modern installations Citrix recommends to use Citrix Workspace, it installs well on 20.04 LTS without wget commands.