Monday, September 25, 2023
 Popular · Latest · Hot · Upcoming
20
rated 0 times [  20] [ 0]  / answers: 1 / hits: 11238  / 2 Years ago, sun, march 6, 2022, 8:53:46

I have the official Amazon client, and I have been using it for years. When I upgraded to 22.04, the client began to crash on every launch. It seems to be an error with OpenSSL


$ ./workspacesclient              
No usable version of libssl was found
[1] 23961 IOT instruction (core dumped) ./workspacesclient

I did attempt to load an older libssl with


$ sudo aptitude install libssl-dev

But that did not change the behavior in any way that I could see.


More From » workspaces

 Answers
5

I've found a temporary workaround, although I can't say I love it. The workspaces client is using needs OpenSSL 1.x. Ubuntu 22.04 does not ship with this, nor is it readily available in the standard repos. I was able to manually install the package with


wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb
sudo apt-get install ./libssl1.1_1.1.1l-1ubuntu1.3_amd64.deb

At which point the client will detect the older library and run. Now I just need to remember to remove that package when they update so I don't have old security packages lying around.


Note: If you get a 404 error on the wget step, the library probably has had another version jump. Go to http://security.ubuntu.com/ubuntu/pool/main/o/openssl/, search for libssl1.1_1.1.1l-1ubuntu, and grab the link for the most recent version. (As of 5/10/2022, it's 1.3.)


[#556] Sunday, March 6, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
lassrake

Total Points: 400
Total Questions: 103
Total Answers: 98

Location: Netherlands
Member since Mon, Jun 22, 2020
3 Years ago
;