mount needs to know, the type of file system, you are using on the hard disk partion. There are a few choice's you can take:

(Try them
all, it don't hurt, all you get is an error)
-t vfat
if your have installed them on a m$ partion (not very likely)
-t ext2
if you have them installed on a non journaling linux drive (I can't check ore remember, but it thinks this is the default.)
-t ext3
This the journaling version of the file system.
To mount a non journaling file system on hda1 (first harddisk, first partion) do:
mount -t ext2 /dev/hda1 /<some empty directory>
Remember to check, that /mnt is empty. if it is not, create a directory under it.
Hope it helps
(I can remember, when i started to do linux, i could not figure out to shutdown the computer, some

ha)