'Raspberry pi os Bullseye 64bit ssh password not 'raspberry' anymore?
I've been having problems with the raspberry pi imager so just downloaded the latest 64bit os from their site. Then used Belena Etcher to etch the image. Made the ssh file and the wpa_supplicant file.
It's showing on the network but for some reason I can't connect via ssh via terminal with ssh [email protected], it asks for a password but when I enter 'raspberry' it won't work. Has something changed?
Solution 1:[1]
There is no longer a default username/password.
Have a look at: https://www.raspberrypi.com/news/raspberry-pi-bullseye-update-april-2022/
Solution 2:[2]
This answer is an extension of the answer provided by @Gotenks.
Create a file named userconf in the boot folder to create a user. The contents of the file are as follows
username:password-hash
The password hash is generated using the following command
echo "password" | openssl passwd -6 -stdin
For example:
pi:$6$38HiUnLhwlE1DRdL$MHHb6/OsyAlZNqmW7igj333g/CRwG/g5nls7ylTEqZZg9rOIM/cUvE962.5x6M0ONMz/r6OlBy/G6f4v8zrH51
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Gotenks |
| Solution 2 | helpimnotdrowning |
