Posted On December 26, 2020

Linux Mint 20: How to Disable the Annoying Keyring Prompts for Passwords

kimconnect 0 comments
blog.KimConnect.com >> Linux >> Linux Mint 20: How to Disable the Annoying Keyring Prompts for Passwords

Update 03/2023: https://blog.kimconnect.com/linux-how-to-bypass-annoying-login-keyring-prompts/

The default installation of Linux Mint expects that the user would login using valid credentials, which would unlock the default keyring. When autologin has been enabled, this causes a dilemma where the System keyring hasn’t been unlocked upon reboots.

For instance, applications such as Chrome or Skype would require access to the default keyring even if those applications’ keyring passwords have been set to null. Assuming that security is to be forfeited, here are the steps to prevent those keyring password prompts.

  1. Change the name of the default Keyring
    • defaultKeyring=/home/$(whoami)/.local/share/keyrings/Default_keyring.keyring
      renamedKeyring=/home/$(whoami)/.local/share/keyrings/Default_keyring.keyring.bak
      sudo mv $defaultKeyring $renamedKeyring
  2. Reboot the system

Leave a Reply

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

Related Post

How To Install Kubernetes on Ubuntu 20.04 Server

Overview Docker is available in 2 versions, Community Edition (CE) and Enterprise Edition (DE). The…

CentOS & Redhat Linux VS Exfat

Have you ever encountered this error: "Unable to access $$$ GB Volume" Error mounting /dev/mmcblk0…

HAProxy on CentOS 7

# Install HAProxy 1.8 using SCL repo yum install centos-release-scl yum install rh-haproxy18-haproxy rh-haproxy18-haproxy-syspaths  …