Fix Install of Citrix Reciever on Ubuntu 12.04 x64
I had two errors:
1. /var/lib/dpkg/info/icaclient.postinst: 696: /var/lib/dpkg/info/icaclient.postinst: nspluginwrapper: not found
2. dpkg: error processing icaclient (–install):
Solution:
1.
sudo apt-get install nspluginwrapper
2.
sudo vi /var/lib/dpkg/info/icaclient.postinst
Find
echo $Arch|grep “i0-986” >/dev/null
Replace with
echo $Arch|grep -E “i0-986|x86_64” >/dev/null
Also remember to install libmotif4
sudo apt-get install libmotif4:i386
More info here
https://help.ubuntu.com/community/CitrixICAClientHowTo
save and exit
Now run
sudo dpkg –configure icaclient

Tags: , , , , ,

Leave a Reply

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