Resetting your systems root password may be a necessary step if you have forgotten it or have bought a used computer which you don’t want to setup anew. Doing so without any installation medium saves you a blank CD and a bit of time.
To start, restart your computer and get to the GRUB menu by pressing Shift while booting. Point your cursor to the Recovery mode option:
Press e to edit the boot options.
There, look for a line that looks like this:
linux /boot/vmlinuz-3.2.0-18-generic root=UUID=b8b64ed1-ae94-43c6-92\d2-a19dfd9a727e ro recovery nomodeset
The line will differ depending on your version and kernel but should have about the same syntax. Remove the last part of line which is ro recovery nomodeset and replace it with rw init=/bin/bash
This will cause a command line to be opened on startup. Press F10 now to reboot the machine and get to the command line. Once you are there, enter:
# passwd root
It will ask for the new password.
Enter the new password and reboot the system.
===========================================================================================
Basically What is happening here is ,
1. Instead of using the initrd and starting the system process, we are using the minimal init process binary.
2. ramdisk is also mounted with readwrite option. So , init process is created with full access and we are able to change the root password.
If you need more details contact me.