How do I change the "Default" password

Solution 1:

Sounds like your keychain is out of sync with your password. Go to System/Preferences/Password and Encryption keys, then choose the "login" chain.

Seahorse

The only way that I know works is to set this to a blank password - you will be prompted on whether you are willing to trust this "unsafe storage" method, since your keyring will unlock automatically on login.

I think you can also match the password on the login keychain to match that of your login password. But a) I haven't tested that and b) you have to remember to change your keychain password whenever you change your login password.

As the only person on my laptop, configured with encrypted home, I'm happy with unsafe storage, but your mileage may vary.

Solution 2:

Chrome asks for the password when your account is set for autologin. Doing this makes it so that the keyring doesn't load when you reset/reboot your system.

Chrome is asking for the password to the keyring so it can access stored information in the keyring. You can view the keyring on your system by running the command seahorse from a terminal window. You can also just bypass the asking by closing the window and still get to your sites without a problem. Some of the security may not load properly.

However, you can use the following command from a terminal window to bypass the keyring asking:

google-chrome-stable --password-store=basic

Hope this helps!

Copied entirely from @Terrance's answer here

Solution 3:

It's also possible that since your using auto-login, you might be hitting another problem - sometimes network manager doesn't seem to save the WEP/WPA key properly. You can usually get round this by opening the connection and changing it "available to all users".

So, right click on network manager, choose "Edit Connections". Find your connection, and choose "Properties", then tick the "Available to all users" box at the bottom.

enter image description here

Solution 4:

In order to change the root password, open a terminal

sudo passwd

When asked, provide your user password in order to perform sudo tasks, then enter the "new UNIX password" twice.

Now the root user has a new password.

You will see something like this:

geppettvs@HANNAH:~$ sudo passwd
[sudo] password for geppettvs: 
Enter new UNIX password: 
Retype new UNIX password: 
passwd: password updated successfully
geppettvs@HANNAH:~$

Good luck!