How to install Enpass password manager on clear linux

Thought I would save some people some time if they needed this. I borrowed the same method as the installing Google Chrome post.

Step by step process

  1. Open a terminal
  2. Run the following command to obtain root privileges
sudo -s

and type your admin password.
3. Run the following commands, one by one:

swupd bundle-add package-utils
curl -LO https://yum.enpass.io/stable/x86_64/enpass-6.2.0.537-1.x86_64.rpm
sudo rpm -U --nodeps enpass*.rpm
  1. Now you can delete the .rpm package and, if you don’t need it , the package-utils bundle. To do this run the following commands, one by one:
rm -f google-chrome*.rpm
swupd bundle-remove package-utils
1 Like