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

Linux: Check CPU Utilization

There are many utilities that would provide this information. The easiest one that is available…

Linux: Installing Portainer

Step 1: install Dockerhttps://blog.kimconnect.com/linux-installing-docker-community-edition-on-centos-8/ Step 2: install networkThere are two modes: bridge or 802.1q trunk…

Linux: GREP Training

Lorum Ipsum - let's learn about grep, ya'll Examples: # Get information only on the…