. Mount the `/` (root) partition (be sure to use the actual device node or LVM path of your root `/` partition):
+
To mount root on a *standard partition* scheme enter:
+
[source,bash]
----
mount /dev/sda2 /mnt/sysimage
----
+
To mount root on an *LVM partition* scheme enter:
+
[source,bash]
----
mount /dev/fedora/root /mnt/sysimage
----
. Continue the process by mounting `/boot`, `proc`, `/dev`, and `/run` with:
+
[source,bash]
----
mount /dev/sda1 /mnt/sysimage/boot
mount -t proc none /mnt/sysimage/proc
mount -o bind /dev /mnt/sysimage/dev
mount -o bind /run /mnt/sysimage/run
----
. `chroot` to the mounted root partition with:
+
[source,bash]
----
chroot /mnt/sysimage /bin/bash
----
. Change the root password:
+
[source,bash]
----
passwd
----
. Exit out of chroot with:
+
[source,bash]
----
exit
----
+
and exit out of the terminal.
. Reboot your system and boot from the hard drive.
Congratulations, your root password has been successfully changed.
[[sect-additional-troubleshooting]]
== Additional Troubleshooting
. If you cannot enter rescue mode because you forgot the Firmware/BIOS password here are some options:
.. Refer to your computer's documentation for instructions on resetting the Firmware/BIOS password in CMOS memory.
.. Temporarily move the system hard disk to another machine, and follow the procedures above to reset the root password.
. If you have set a password for your boot loader, refer to link:++creating-and-using-a-live-installation-image.html++[Creating and Using a Live Installation Image].
. If you want to reset the boot loader password, refer to the instructions on how to link:++https://fedoraproject.org/wiki/Reset_Bootloader_Password++[Reset the Bootloader Password].