Ubuntu – Manage “Passwords and Keys” from the command line

command linegnome-keyringkeyringspassword

I am new to Ubuntu and using 18.04. I have setup remmina for RDP and I found that it is storing its passwords in "Passwords and Keys". I would like a way to update those passwords from the command line. After searching I've ended up installing:

But I'm coming up empty on being able to do CRUD operations on GNOME Keyring. Can anyone point me in the right direction?

Best Answer

Create secret with attribute myattribute=foobar

secret-tool store --label="My Label" myattribute foobar

Retrieve secret by attribute

secret-tool lookup myattribute foobar
Related Question