Site icon DesignLinux

How to Reset a Forgotten Root Password in Fedora

This brief article explains the steps you can take to reset your forgotten root password on a Fedora Linux system. For this guide, we are using Fedora 32.

Read Also: How to Reset Forgotten Root Password in CentOS 8

First, you need to reboot or power on your system and wait until the grub menu is displayed as shown below.

Fedora Grub Menu

Fedora Grub Menu

Press 'e' to edit the grub parameters. This ushers you to a display shown below. Next, locate the line beginning with 'linux' as shown below.

Locate Grub Kernel Parameter

Using the Cursor forward Arrow key, navigate to the section with the rhgb quiet parameter.

Kernel rhgb quiet Parameter

Now replace the rhgb quiet parameter with rd.break enforcing=0.

Change Grub Kernel Parameter

Next press ctrl + x to boot into single-user mode. Next, remount the root filesystem in read and write mode.

# mount –o remount,rw /sysroot

Mount Root Filesystem in Fedora

Next, run the command below to gain access to the Fedora system.

# chroot /sysroot

To change or reset the root password simply issue the passwd command as shown.

# passwd

Reset Root Password in Fedora

Provide a new password and confirm it. If all went well, a notification ‘password updated successfully‘ will be displayed at the end of the console.

To reboot the system, simply hit Ctrl + Alt + Del. You can thereafter log in as the root user using the newly created root password.

Upon logging in, run the command below to restore SELinux label to the /etc/shadow file.

# restorecon -v /etc/shadow

And finally set SELinux to enforcing mode using the command.

# setenforce 1

And this concludes our topic on how to reset a forgotten root password on Fedora 32. Thank you for taking the time on this tutorial.

Sharing is Caring…
Share on FacebookShare on TwitterShare on LinkedinShare on Reddit
Exit mobile version