Skip to content

Instantly share code, notes, and snippets.

@porjo
Last active January 14, 2020 03:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porjo/8d713fd162861bcb1bcd5641c4b2b6d7 to your computer and use it in GitHub Desktop.
Save porjo/8d713fd162861bcb1bcd5641c4b2b6d7 to your computer and use it in GitHub Desktop.
Install Citrix ICA client on Fedora

Running Citrix ICA client on Fedora

  • Download 'Receiver for Linux Web client (x86_64)' from Citrix website
  • Install package e.g.dnf install ICAClientWeb-rhel-13.10.0.20-0.x86_64.rpm
  • Install dependencies (not sure if all these are required):
sudo dnf install compat-openssl10 motif libXaw libidn1.34 libjpeg-turbo-utils
  • Modify launcher /usr/share/applications/wfica.desktop:

Replace this line

Exec=/opt/Citrix/ICAClient/wfica -icaroot /opt/Citrix/ICAClient %f

With this:

Exec=env LD_PRELOAD="/lib64/libcrypto.so.1.0.2o" /opt/Citrix/ICAClient/wfica -icaroot /opt/Citrix/ICAClient -geometry 1920x1080 %f

(Adding the -geometry flag forces windowed mode. This gave me better performance than fullscreen)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment