When you boot up Linux Mint from a bootable USB. Everything is loaded into RAM and run from it. Since it is a live Linux, there's limitation of what you can do until you actually install it then you'll be able to create your own user and password.
Yes. The default user for live CD is:
mint and password is
blank. The user/passwd information is stored in the file:
/etc/passwd. Right click on the desktop->Open in terminal then type:
cat /etc/passwd , you'll see the format of the password file, all fields separated by a ":". the second field in the file is an "
x" which indicates that the encrypted password is stored in another file:
/etc/shadow.
Here's an explanation of the fields in the /etc/passwd file:
Understanding /etc/passwd File Format
All that said. Yes, you can change the password for mint user. Right click on desktop->Open in terminal:
- type: passwd
- when prompt for current password, just hit <RETURN>
- will be prompted for a new password, for testing, just type: abc12345
- repeat step 3.
Now you can logout and log back in using: mint and password is: abc12345.
NOTE: In Linux, case is sensitive.
However, since everything is run from RAM and will be erased in the next boot from Live Linux. The password will be defaulted back to blank.
Hope this helps !!!