How to install Citrix receiver? [duplicate]
How can I install Citrix Receiver on Ubuntu 13.04?
Solution 1:
Citrix Receiver requires OpenMotif v2.3.1 or greater to use the Graphical User Interface.
The first step is to install OpenMotif 2.3.1. You can download OpenMotif from Launchpad. Once downloaded and installed, download Citrix Receiver. deb file.
Once downloaded, just press Ctrl+Alt+T on your keyboard to open Terminal. When it opens, navigate to the folder where the file was downloaded (probably the Downloads folder), and run the command(s) below:
sudo dpkg -i <file_name>.deb
For more info visit Citrix
Edit
If you get the eeror below installing the 64bit
dpkg: error processing icaclient (--install): subprocess installed post-installation script returned error exit status 2 Errors were encountered while processing: icaclient
Try this:
- Install the .deb and let it fail
- Edit
/var/lib/dpkg/info/icaclient.postinst
- Replace the line that says
echo $Arch|grep "i[0-9]86" >/dev/null
with*echo $Arch|grep -E "i[0-9]86|x86_64" >/dev/null
(note the -E after grep!) - Run
sudo dpkg --configure icaclient
Source for Edit:Citrix Forums