Created
January 7, 2023 10:12
-
-
Save ermirbeqiraj/7e7e6f8cd99c91bf7a728ffc75701ff4 to your computer and use it in GitHub Desktop.
Install amazon WorkSpaces in Ubuntu 22.04 LTS
This file contains hidden or 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
# | |
# Issue: LinuxClient makes use of openssl 1 | |
# https://clients.amazonworkspaces.com/linux-install | |
# | |
cd ~/Downloads | |
wget wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb | |
# if the above doesn't works, go to http://security.ubuntu.com/ubuntu/pool/main/o/openssl/ and find another package | |
# that start like 'libssl1.1_1.1.1f-1ubuntu | |
sudo apt-get install ./libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb | |
rm libssl1.1_1.1.1f-1ubuntu2.16_amd64.deb | |
# | |
# Now download the AWS provided client and connect | |
# |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment