I've just installed Ubuntu 22.04 and I'm struggling to install Pulse Secure.
For installation, I use this answer
But got the error:
./pulseUi: error while loading shared libraries: libenchant.so.1: cannot open shared object file: No such file or directory
As I understand I need libenchant1c2a
, but I can't install it.
What I did:
user@server:~$ wget http://archive.ubuntu.com/ubuntu/pool/universe/e/enchant/libenchant1c2a_1.6.0-11.4_amd64.deb
Error:
--2022-05-23 17:12:49-- http://archive.ubuntu.com/ubuntu/pool/universe/e/enchant/libenchant1c2a_1.6.0-11.4_amd64.deb
Resolving archive.ubuntu.com (archive.ubuntu.com)... 185.125.190.39, 91.189.91.38, 185.125.190.36, ...
Connecting to archive.ubuntu.com (archive.ubuntu.com)|185.125.190.39|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
2022-05-23 17:12:49 ERROR 404: Not Found.
Could you help me?
libenchant
has been removed from new Ubuntu version and replaced bylibenchant2
. – Pilot6 May 23 '22 at 16:08sudo apt install libenchant1c2a
or similar based upon the actual package name for your release of Ubuntu. 2) Becasue of #1, you are specifying a version that's not in the Ubuntu repositories -- that's why you are getting a 404 error. – user535733 May 23 '22 at 16:29