mounting windows hard drive
hello! Im trying to mount a windows hard drive on Linux to copy some files over but I'm having a bit of trouble. My Linux hard drive is my primary master (hda right?) while my Windows hard drive is my secondary master (hdc right?). Well I edited /etc/fstab and added this line:
Code:
/dev/hdc /mnt/hdc vfat defaults 0 0
As I understand it, that should tell Linux to mount /dev/hdc (secondary master, ie Windows) on /mnt/hdc letting it know that its a vfat filesystem type. But when I run 'mount /dev/hdc' as root in a terminal, it says:
Code:
mount: wrong fs type, bad option, bad superblock on /dev/hdc, missing codepage or other error
'dmesg | tail' gives me:
Code:
FAT: Bogus number of FAT structure
VFS: Cant find valid FAT filesystem on device hdc
Can anyone tell me what the problem is?