Well, assuming you're doing it lawfully, you should have access to the machine. If you are running Linux, head on over to
www.toms.net/rb and grab
tomsrtbt to boot into your system from a floppy. If you are running some other hardware/software combination than Linux on Intel, check your documentation for details on booting into mini-root. Mount the partition / disk that contains the /etc directory, and you'll have to edit the passwd (or shadow, if you're using shadowed passwords) file. Clear out the password field for root, so it should look like this:
root::0:0::/:/sbin/sh
instead of
root:/z4qjkR6ptOeEOvY:0:0::/:/sbin/sh
[Note: that is a munged passwd - don't waste your time trying to crack it. I just made it up. A normal password field would have 13 characters, and MD5 passwords have many more.]
Now, boot the system normally. You should be able to log in as root (or use
su - ) without a password. Now make sure to set a good, rememberable (no, I don't think that's a work either) password!
You can also delegate root privelages to other accounts by editing the passwd file, but that's not always a good idea - especially on a production system.
HTH