I need to authenticate so that I can use the VNC Server and Viewer and be able to access the Pi's screen from another computer. When I download the VNC Server I have to authenticate and enter a password for the username "pi" . The password is not "raspberry" and I do not remember if I changed it or not (i am a newbie to this). I have been working on a project for a long time and I don't wanna have to reset the whole pi. Is there a solution to reset the password or "find " it somewhere so that I can keep working? Thanks
Asked
Active
Viewed 1.7e+01k times
2 Answers
15
The hashed password is stored in /etc/shadow
. There is no efficient way to find out what the password is, by design.
However, it is easy to reset as long as you have physical access. Start a Linux on a computer. It can be an installed Linux or a Live Linux on a PC, or it can be a Linux on a PI. Find the line with the password of the PI in the /etc/shadow
of an original SD card image. Mount your SD card, you may need an extra SD card reader for this. Replace the line with the password with the original value. You have reset the password to the original value.

RalfFriedl
- 2,188
- 2
- 10
- 11
9
to reset your password:
- Power down and pull the SD card out from your Pi and put it into your computer.
- Open the file 'cmdline.txt' and add 'init=/bin/sh' to the end. This will cause the machine to boot to single user mode.
- Put the SD card back in the Pi and boot.
- When the prompt comes up, type 'su' to log in as root (no password needed).
- Type "passwd pi" and then follow the prompts to enter a new password.
- Shut the machine down, then pull the card again and put the cmdline.txt file back the way it was by removing the 'init=/bin/sh' bit.
more information: https://web.archive.org/web/20160228052651/http://mapledyne.com/ideas/2015/8/4/reset-lost-admin-password-for-raspberry-pi
Hope this helps!
-
I tried it just now. But it doesn't work. The problem is that I am using Rpi3B+ with the newest Raspbian Version 2019April. I changed the cmdline.txt as instructed. However as usual, the system boots to GUI desktop. Anyway I go to terminal and typed su. Then I got the error message, not allowing me to log in. I guess Mapledyne's method does not work for Raspbian 2019April. – tlfong01 May 08 '19 at 13:52
-
2
-
3@tlfong01 It worked for me. But this link is better https://howtoraspberrypi.com/recover-password-raspberry-pi/ – xoani May 09 '19 at 09:04
-
Ah, your new link says it is "2018 update". Perhaps it implies 2017 or earlier suggestions might not work for 2018 Stretch. I will try your new link again. Many thanks. – tlfong01 May 09 '19 at 09:10
-
2
-
-
from @xoani 's link: adding
mount -o remount, rw /
before supplyingpasswd pi
command can eliminate errors like "Authentication token manipulation error" – Mohit Aug 24 '22 at 17:48 -
And if
mount -o remount, rw /
gives you an error, try this insteadmount -o remount,rw /dev/mmcblk0p2 /
– kschnack Jun 06 '23 at 07:16
pi:$6$SBgOl43F$QTRz0W27/786iJiN5YLlrsce7g3taQv8TiQYfcfBTXmwPs.jw5lOzu2ciZwHSFTaw16R.UaAr6ZR.ZRO6lWDR1
– php_nub_qq Sep 29 '21 at 07:582022-01-28
release of Raspberry Pi OS – ShockwaveNN Feb 07 '22 at 12:30