you can't just magically read the password from the password file anymore. all new systems use shadowed passwords, which means that when you enter your password, it encrypts it with a one-way algorithm and compares the passowrd to the encrypted password stored in the password file. this is why sysadmins can't usually tell you your password anymore if you forget it , but rather end up having to reset it for you.
-------------------------------------
you can however backup all of your important files before you reinstall even without the root password. boot up from a linux floppy (tinfoil hat, floppy-fw) or cd (install cd, knoppix) and mount your linux partition and copy the files to a zip disk or cd etc. Code: mkdir /mnt/hda1
mount -t fstype /dev/hda1 /mnt/hda1
replacing hda1 with wherever your linux partition is and fstype with whatever filesystem type your linux partition is (i.e. ext2, ext3. reiserfs)
-lakerdonald |