Quote:
Here goes:
1. Create a mount point whereever you want it - something like /mnt/c or whatever. Just do mkdir /mnt/fat
2. Now lets see if we can mount the partition: mount -t vfat /dev/hda2 /mnt/fat
3. If that works, to make it boot at boot-time add a line to your /etc/fstab file. Follow what the others look like, but IIRC it should look something like:
/dev/hda2 /mnt/fat vfat defaults, auto 0 0
HTH
__________________
mrBen "Carpe Aptenodytes"
Linux User #216794
My page
My Screenies
My "work" page
if you want to make it automount when you start the machine you will have to add an entry in fsta, otherwise you can stop at point 2 as long as you don't mind having to re mount it everytime you reboot.