Installing Citrix ICA Client 10.6 on Fedora 8
While I work at Head Office, my company runs Citrix Presentation Server 4.0 for branch and remote access. We also have access to Outlook Web Access for checking email from home but I prefer to use the fully-fledged Outlook client when possible, so I needed to install the ICA client on my home Linux workstation which currently runs Fedora 8. The following instructions got it working perfectly after logging in as “root”:
yum install libXp
wget ftp://ftp.ics.com/openmotif/2.3/2.3.0/openmotif-2.3.0-1.fc6.i386.rpm
rpm -Uvh openmotif-2.3.0-1.fc6.i386.rpm
ln -s /usr/X11R6/lib/libXm.so.4.0.0 /usr/X11R6/lib/libXm.so.3
ldconfig
ln -s /usr/lib/ICAClient/npica.so /usr/lib/mozilla/plugins/wget -O /usr/lib/ICAClient/keystore/cacerts/Equifax_Secure_Global_eBusiness_CA-1.crt https://www.geotrust.com/resources/root_certificates/certificates/Equifax_Secure_Global_eBusiness_CA-1.cer
rpm -ivh—nodeps ICAClient-10.6-1.i386.rpm
NB: You may need to adjust or even ignore the second “wget” command depending on who your company bought its SSL certificate through. Mine bought theirs from http://www.trustico.com.au which required me to manually install the root certificate of their upstream CA (GeoTrust).
Post a comment