11-11-2019, 08:36 PM
This worked like a charm, thank you!
I would also add something that I ran into related to getting Citrix running on other Linux machines I've connected on (this may or may not be necessary for everyone). When trying to connect to my thin/thick desktop, I will receive an error about "0.0.0.2 - Thick Desktop location not found". The issue in the past (and solved it this time as well) was that the certificates were not found. By creating a symlink from the system's SSL cert location to the Citrix location, Citrix now has all the same certs the system has:
My understanding of all the ins & outs here is limited, so feel free to correct/clarify anything, but I hope this helps anyone else running into the same issues I have in the past!
I would also add something that I ran into related to getting Citrix running on other Linux machines I've connected on (this may or may not be necessary for everyone). When trying to connect to my thin/thick desktop, I will receive an error about "0.0.0.2 - Thick Desktop location not found". The issue in the past (and solved it this time as well) was that the certificates were not found. By creating a symlink from the system's SSL cert location to the Citrix location, Citrix now has all the same certs the system has:
Code:
sudo rm -r /opt/Citrix/ICAClient/keystore/cacerts
sudo ln -s /etc/ssl/certs /opt/Citrix/ICAClient/keystore/cacerts
My understanding of all the ins & outs here is limited, so feel free to correct/clarify anything, but I hope this helps anyone else running into the same issues I have in the past!