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:

  1. Install the .deb and let it fail
  2. Edit /var/lib/dpkg/info/icaclient.postinst
  3. Replace the line that says echo $Arch|grep "i[0-9]86&quot; >/dev/null with *echo $Arch|grep -E "i[0-9]86|x86_64" >/dev/null (note the -E after grep!)
  4. Run sudo dpkg --configure icaclient

Source for Edit:Citrix Forums