• First Steps
  • General
  • Projects
Facebook Twitter YouTube
Tutorials for Raspberry Pi Tutorials for Raspberry Pi
  • Hardware & GPIO
  • Sensors & Components
  • Scale
  • Cases
  • Fingerprint
  • Gas Sensor
  • Heartbeat
  • German
Tutorials for Raspberry Pi Tutorials for Raspberry Pi
Home»Hardware & GPIO»List of all Raspberry Pi Default Logins and Passwords

List of all Raspberry Pi Default Logins and Passwords

Facebook Twitter LinkedIn Tumblr Email Reddit
All Raspberry Pi's Default Login and Passwords
Share
Facebook Twitter LinkedIn Email Tumblr Reddit Telegram WhatsApp

Are you logged out of your system because you don’t know the Raspberry Pi default login and are now searching for ways to reset it? If yes, then rest assured! We will provide you with all the information you need regarding resetting and securing your Raspberry Pi OS.

Like other devices, there is also an inbuilt Raspberry Pi default login when you install your Raspberry Pi OS. However, as these default logins are readily available on the internet, anyone with harmful intentions might try to access them. Thus, it’s not secure to keep working with the default login.

On that account, if you haven’t changed your default password yet. Then we will help you reset your password and everything related to it. So, what are you waiting for? Let’s get into it!

 

In older versions of the Raspberry Pi OS, there were a default username and password; Username pi, password raspberry. This is no longer the case. However, if you are using an older version of the operating system or are working with an existing installation, this default user may still be present. If you haven’t already done so, you should change the default password immediately to ensure your Raspberry Pi is secure. How to do that is described in this article.

 

Set Raspberry Pi default password via RPi Imager (Headless)

In newer Raspberry Pi OS versions, we have to set the password ourselves. We have two options:

  1. After the first boot (requires keyboard and monitor)
  2. Directly during installation (headless). Let’s look at this case in detail.

To do this, we load the Raspberry Pi Imager and choose an operating system that we want to install. This can be downloaded directly via the downloader.

Raspberry Pi Imager - Download Default Operating System

Then we click the options symbol (alternatively via CTRL + Shift + X) and check the box “Set username and password”. We can also configure other settings (Wi-Fi, language, etc.) directly.

 

Raspberry Pi Imager - Set Standard Login Data

After flashing, you can start right away and do not need any further Raspberry Pi standard access data.

 

The Default Username and Password on all Raspberry Pi OS (deprecated)

Most of the Raspberry Pi operating systems have default passwords to access through SSH. For instance, in Raspberry OS, the default username is “pi” and the default password: “raspberry“. However, other distributions have their default usernames and passwords that are not similar always to Raspberry Pi OS.

The following table consists of the default usernames and passwords of the most renowned Raspberry Pi’s distributions:

Raspberry Pi Distributions Username Password
Raspberry Pi OS pi raspberry
DietPi root dietpi
Lakka Linux root root
Kali Linux root toor
OpenELEC root openelec
Arch Linux ARM root root
Debian pi raspberry
LibreELEC root libreelec
OSMC osmc osmc
QtonPi root rootme
Ubuntu Server ubuntu ubuntu
ROKOS rokos rokos
Retropie pi raspberry

 

How To Change The Raspberry Pi Default Password?

The Raspberry Pi default login is incorporated to make the setup easy for new users. Nevertheless, it’s better to change the default login to keep your system secure. With the recent update, Raspberry Pi OS prompts the users to set up a new password right after installation. However, if you still haven’t changed your password, this is how you do it.

Go through the following instructions to change your password:

  • You can log in using the default username: “pi” and the default password: “raspberry”.
  • After logging in, use the passwd command to change your password instantly.
  • Open the command line, type passwd, and press “Enter.”
  • You’ll get asked to enter your current password for verification.
  • After verification, you can type in your new password and press “Enter.”
  • Once you’ve successfully verified your password, it’ll get applied right away.

Change Raspberry Pi Default Password

 

Note:
You’ll not be able to see any characters on the display while entering the password. So, don’t panic; just type in your password and press “Enter.”

How To Change Other User’s Passwords?

In case your user has “sudo” permissions (which the default user “pi” has), you can change any of the user’s passwords by following the steps mentioned below.

  • Enter passwd on the command line along with the user’s name.
  • Type in sudo passwd jack to get permitted to set the user jack‘s password.
  • The process is similar to changing the (default) password of your own user.

Note:
You can even remove the user’s password by entering the command sudo passwd bob -d in the command line. However, this practice is not recommended as it will weaken your system’s security.

 

How To Change The Root Password?

You don’t usually log in as a root user on startup. However, you can log in as a root user and change the root password on Raspberry Pi through the following steps:

  • In the command line, type in sudo su and press “Enter” to access as supervisor.
  • Now use the passwd root command to get prompted to change the root password.Raspberry Pi - Change Root Password
  • Type in the new root password and press “Enter”.

How To Create A New User?

If you want to create new users on your operating system,  then you can follow the three basic steps mentioned below:

Add new (Default) User Login in Linux or Raspberry Pi OS

  • Type in  adduser  in the command line and press “Enter”.
  • Now, insert the new user’s name such as: sudo adduser jack and press “Enter”.
  • You’ll have to enter the login information for the new user “jack”.
  • After inputting the required information, press “Enter” to continue.
  • The new user will get added instantly.

Location of the Home Folder

  • The newly added user will have a home folder in /home/.
  • The default Raspberry Pi user’s home folder is located as /home/pi/.

Skel

  • The contents of /etc/skel/ will get transferred to the new user’s home folder.
  • All the modifications you make to the files with extensions such as; .bashrc in /etc/skel/ will get automatically applied to the recently added users.

How To Add A New Member To The Sudo Group?

The default Raspberry Pi user belongs to a “sudo” group. Belonging to a “sudo” group allows the default user to run commands as a root (super) user. It also permits the user to switch to the root user with sudo su

Following instructions will help you add a new member to the sudo group:

  • Type in sudo adduser jack in the command line.
  • The user “jack” will get prompted to enter their password to run “sudo.”

In case you want to remove this prompt:

  • Create a sudoer file using sudo visudo /etc/sudoers.d/010_jack-nopasswd.
  • Place it in /etc/sudoers.d index.
  • Type in jack ALL= (ALL) NOPASSWD: ALL in a single command line.
  • Save and exit.

After this process, your file will get checked for errors. In case there are any errors,

  • A dialogue box will pop up stating, “what now?”. Press the “Enter” key.
  • You’ll see various options; just press “e” to edit the sudoers file to fix the problem.

How To Delete A User?

If there are a lot of users on your system, and you feel like removing some of them. Then you can delete the unwanted users by just one command, which is as follows:

  • Type userdel in the command line and press “Enter”.
  • You can add -r in the same command to delete the user’s home folder as well.
    sudo userdel -r jack.
  • Be careful to not delete anything that you are not sure of.

Conclusion

Summing up, it is crucial to reset the Raspberry Pi default login (meaning its password) as soon as you access it the first time. In case you are new to this system and don’t know how to reset the password, then here in this article, we have covered all the basics of resetting the default password. Moreover, you’ll find some additional help and information as well.

Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
Previous ArticleRaspberry Pi 4 LĂŒfter anschließen und steuern – Tutorial
Next Article Module GSM Raspberry Pi – Internet mobile (LTE, 3G, UMTS)

Related Posts

How to build a ESP8266 Scale (with Weight Sensor HX711)

How-To: Bluetooth Connection between ESP32’s and Raspberry Pi’s

How to create a Solar Powered Raspberry Pi Bitcoin Miner

How to build a Smart Agriculture System using IoT

9 Comments

  1. Marabiloso on 8. February 2022 21:46

    The ‘bullseye’ version of Raspberry OS prompts for a password during installation: there is no more default password. This is a good thing when you consider the number of RPis used as IoT devices. Just look at your /var/log/auth.log or (if installed) the log for “fail2ban”, and you’ll see how obvious it is NOT to have a default password on a Pi. Same goes for Librelec.

    Reply
  2. Jorge on 5. June 2022 13:54

    Raspberry PI OS doesn’t include the default pi user anymore for security reasons. So to create the default user from the SD setup you need configure those changes from the Raspberry Imager image setup.
    https://tutorials-raspberrypi.com/raspberry-pi-sensors-overview-50-important-components/

    Reply
  3. Jorge on 5. June 2022 13:54

    Raspberry PI OS doesn’t include the default pi user anymore for security reasons. So to create the default user from the SD setup you need configure those changes from the Raspberry Imager image setup.
    https://tutorials-raspberrypi.com/raspberry-pi-sensors-overview-50-important-components/

    Reply
  4. Ibrahim Halilu on 22. December 2022 19:06

    How can i change my pi user name

    Reply
  5. David Francis on 10. June 2023 18:46

    I’m developing a kiosk app, how do I get it to auto login? I’ve set the auto login in raspi-config, but it still prompts for a password.

    Reply
  6. Chukwujiobi Ebuka on 19. August 2023 18:20

    Good day sir/ma
    Please how can i retrieve my pi password

    Reply
  7. Finley Andrews on 26. December 2023 13:57

    Hello, I have a Raspberry pi maplin kit and I’ve been logged out, I’ve tried to enter the password “raspberry” but it keeps saying the password it incorrect, is there any solutions?

    Reply
  8. Fayaz Uddin on 21. December 2024 9:48

    I want to change my user name

    Reply
  9. Nicolas on 1. March 2025 9:40

    To login onto Raspberry PI image with pre-installed Z-way (Debian “Jessie” on SDcard image from Z-Wave.me/z-way-server/ ), use :
    user : pi
    password: razberry

    Reply

Leave A Reply Cancel Reply

Build your own Raspberry Pi Compass (HMC5883L)

Develop Your Own Raspberry Pi Alexa Skill and Control Pi Remotely

Home Assistant on Raspberry Pi – Getting Started

Raspberry Pi Pico: Programming with the Affordable Microcontroller

Using a Raspberry Pi distance sensor (ultrasonic sensor HC-SR04)

CrowPi 2 Review: Raspberry Pi Laptop & Learning Kit for Kids

Subscribe to Blog
Subscribe to Raspberry Pi Tutorials and don't miss any new Tutorial!
Subscribe

Thank you!

We will contact you soon.

Tutorials for Raspberry Pi
Facebook Twitter YouTube
  • Contact & Disclaimer

Type above and press Enter to search. Press Esc to cancel.