7

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?

dessert
  • 40,956

1 Answers1

1

Create secret with attribute myattribute=foobar

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

Retrieve secret by attribute

secret-tool lookup myattribute foobar
Felix K.
  • 111