11-08-2019, 09:13 AM
For google, following generations and me in a few months:
The Citrix ICA Client won't install on an armhf system with an aarch64 kernel.
Use "dpkg -i icaclient_19.10.0.15_armhf.deb" - installation fails. The do "sudo nano /var/lib/dpkg/info/icaclient.postinst". Go to line 2213, replace
with
and do "apt -f install" - the icaclient will now configure correctly.
Unfortunately, I haven't yet found the Citrix HDX Media engine for armhf (not distributed freely by Citrix) - it should exist; I use an armhf thin client with HDX at work.
The Citrix ICA Client won't install on an armhf system with an aarch64 kernel.
Use "dpkg -i icaclient_19.10.0.15_armhf.deb" - installation fails. The do "sudo nano /var/lib/dpkg/info/icaclient.postinst". Go to line 2213, replace
Code:
echo $Arch|grep -i "^arm" >/dev/null
with
Code:
echo $Arch|grep -i "^a" >/dev/null
and do "apt -f install" - the icaclient will now configure correctly.
Unfortunately, I haven't yet found the Citrix HDX Media engine for armhf (not distributed freely by Citrix) - it should exist; I use an armhf thin client with HDX at work.