I am a new user of SUSE Linux or OpenSUSE Linux servers. I need to change the password for root user account on SUSE or OpenSUSE desktop. How do I change the root password on SUSE / OpenSUSE Linux using command line options?
Introduction – You need to use the passwd command. It is used to update the user’s authentication token(s) i.e. password. Let us see how to change the root user password on SUSE Enterprise Linux system or OpenSUSE desktop/workstation.
How to change root password on SUSE or OpenSUSE
The procedure for changing the password of root is as follows:
- First, log in to the SUSE server using ssh or console
- Open a shell prompt and type the passwd command to change root password in OpenSUSE
- The actual command to change the password for root on SUSE Linux is sudo passwd root
NOTE: Please note that [email protected]:~> is my shell prompt. You need to type commands after the $ prompt.
SUSE change root password command
I am going to log in to my SUSE Linux 12.x/15.x server using the ssh command:
ssh [email protected]
Once logged in enter the command passwd as follows:
[email protected]:~> sudo passwd root
First you need to type the password for vivek user. After that the passwd command asks for the new password, which you will have to enter two times:

The next time you log in to a SUSE server/workstation, use the new password.
Slightly different procedure for changing passwords in SUSE
One can use the following procedure too:
[email protected]:~> ssh [email protected]
Become a root user via the su command or sudo command:
[email protected]:~> sudo -i
OR
[email protected]:~> su -
Finally change your root user password:
passwd
Conclusion
This page explained the process for changing the password of root user using the passwd command on a SUSE.
- Linux Login as Superuser ( root user )
- How can I log in as root?
- How do I become superuser on Ubuntu Linux using su/sudo?
- Ubuntu Linux root Password (Default Password)
- How to create a new sudo user on Ubuntu Linux server
- How to change root password on RHEL ( Red Hat Enterprise Linux)
- How to change root password on CentOS Linux
- How to change root password on Alpine Linux
- How to change root password on SUSE / OpenSUSE Linux
- Change the Password in UNIX
- How to change root password on Debian Linux
- How to change root password on Fedora Linux
- How to change root password on macOS Unix