Here's the mount format:
Code:
mount <device> <directory>
Note that this is a simplifed version of it. For detailed info, use 'man mount'.
Now on to business, to mount FAT32, you need to specify that the type of the device that you are trying to mount is FAT32. In mount, you can use '-t' option.
Code:
mount -t vfat <device> <directory>
('vfat' is the argument you pass after -t for FAT32)
Now, if you are using Redhat, you no doubt have /mnt with subdirectories /mnt/floppy and /mnt/cdrom. I would advise that you create a windows directory in /mnt or if you don't want to, that's fine too.
Since your windows drive is the on the secondary IDE, slave, this should be /dev/hdd.
Which partition does Windows reside on this drive? I've never used a disk without a partition but if Windows is the only thing on this drive, then I assume that /dev/hdd is just what we'll use. So use that format above:
Code:
mount -t vfat /dev/hdd /mnt
OR if you made /mnt/windows:
Code:
mount -t vfat /dev/hdd /mnt/windows
Now if you want to see your Windows files, change directory into /mnt or /mnt/windows (whichever is applicable) and run 'ls'.
Now, since mounting devices only works as root, you can modify /etc/fstab to let users mount the drive. Take a look at your /etc/fstab. There's probably mount points for the cdrom and floppy and some other mount points. Append this next line if you want to let normal users (non root users) mount the Windows drive:
Code:
/dev/hdd /mnt vfat ro,user,noauto 0 0
You should no doubt see that /etc/fstab has a certain format. Use the tab key to space these tokens up nicely.
Make sure to terminate that line with a newline or this file will not parse correctly (Well, if you use emacs in Redhat, I believe this problem will be resolved since it's taken care of).
Dolda2000 do you know what the last two tokens are used for? In my /etc/fstab, I see them listed under dump and pass respectively.