Posted On March 11, 2023

Linux: how to bypass login keyring prompts

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux: how to bypass login keyring prompts
Error Message: 

Something along the line of ‘keyring default keyring but it is locked’

Resolution:
CLI Method:
oldPassword=yourOldPasswordHere
echo python -c "import gnomekeyring;gnomekeyring.change_password_sync('login', '$oldPassword', '');"
GUI Method:

Run Seahorse:

Right-click ‘Default keyring’ > Change Password > Input old password > Continue > leave these fields blank > Continue

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

NGINX

# Create nginx.repovim /etc/yum.repos.d/nginx.repo#### content ####[nginx]name=nginx repo baseurl=http://nginx.org/packages/mainline/centos/$releasever/$basearch/ gpgcheck=0 enabled=1###############sudo yum update nginxsudo service nginx…

Linux: Bash Shell Script To Move/Archive Old Files

# create a script to move files (notice the regex escape for special chars) sudo…

How To Install Zabbix Client on CentOS 8

# Open the commonly known Zabbix ports firewall-cmd --zone=public --add-port=10050/tcp --permanent firewall-cmd --zone=public --add-port=161/tcp --permanent…