Pass (UNIX Password Manager) Link to heading

pass is a simple and secure CLI password manager that uses GPG encryption to store passwords as individual files

sudo apt install pass

# Initialize pass with your GPG key
pass init <your-gpg-key-id>

# generate new password
pass generate my-resource.com

# store new password from input
pass insert other-resource.com

# Retrieve a password
pass my-resource.com

The ~/.password-store file can be used to sync passwords between different systems

101 Link to heading

gpg --full-generate-key
gpg --list-keys
pass init <GPG-key-ID-or-email>
  • [[gpg-keys|GPG Keys]]