info:pass

Pass

pass is a very simple password store that keeps passwords inside gpg2(1) encrypted files inside a simple directory tree residing at ~/.password-store. The pass utility provides a series of commands for manipulating the password store, allowing the user to add, remove, edit, synchronize, generate, and manipulate passwords.

http://www.passwordstore.org/

http://git.zx2c4.com/password-store/about/

Installation et importation depuis keepassxc

#install soft
sudo apt-get install pass
#create gpg key
gpg --gen-key
gpg -k
#create main password, change "xxx" with your name or pseudo
pass init "Fred Radeff"
#go to created directory
cd /home/radeff/.password-store/
#init git
pass git init
#change the remote for yours
pass git remote add origin git@gitlab.com:yourpseudo/pass.git
pass git push -u master
#test
pass insert Personal/testing
pass git push
pass git pull
pass git push
 
# install import tool 
wget -qO - https://pkg.pujol.io/debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/pujol.io.gpg >/dev/null
echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pujol.io.gpg] https://pkg.pujol.io/debian/repo all main' | sudo tee /etc/apt/sources.list.d/pkg.pujol.io.list
sudo apt-get update
sudo apt-get install pass-extension-import
#import your passwords from keepassxc or some other safestore
pass import keepassxc ~/Bureau/pass.csv

GUI / Interface graphique

si la ligne de commande vous rébute

  apt-get install qtpass

si vous n'êtes pas sur debian, voir https://qtpass.org/

doc and credits

Voir aussi

  • info/pass.txt
  • Dernière modification : 2022/07/29 08:53
  • de radeff