Created
May 29, 2018 09:28
-
-
Save TvL2386/e642f5fcccf35cc2c9d647d773b67248 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Citrix Receiver on ubuntu-18.04 | |
There's a bug in icaclient_13.9.1.6_amd64.deb when you are trying to connect to the desktop. You'll get something like: | |
Cannot connect to "0.0.0.2-Remote Desktop_" | |
No such file or directory. Verify you connection settings and try again. | |
It looks like this: https://askubuntu.com/questions/1033685/cannot-connect-to-remote-desktop-with-citrix-receiver | |
To resolve it, install an older version. I took: icaclient_13.8.0.10299729_amd64.deb which you can download from here: https://www.citrix.com/downloads/citrix-receiver/legacy-receiver-for-linux/receiver-for-linux-138.html | |
After you've installed it, you'll have to add the root certificate we depend on: | |
sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts/ | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks @Ferszcik this solved my issue!