1 create a mount point.
#>mkdir /mnt/fat32
2 find out what the fat32 partition is
(as root)
#>fdisk -l /dev/hda
(if the fat32 partition is on the primary master IDE drive, /dev/hdb for primary slave, /dev/hdc for sec. master or /dev/hdd for sec. slave)
3 issue the mount command based on the output from 2
#>mount /dev/hda1 /mnt/fat32
(if the fat32 partition is somewhere else, just substiture the correct partition for /dev/hda1)
Your FAT32 partition should now be available for browsing under /mnt/fat32.
To unmount the command is:
#>umount /mnt/fat32
To automatically mount during system start, edit the /etc/fstab file, and add the following entry at the end
/dev/hdb1 /mnt/fat32 vfat defaults 1 1 AV
tnedor@yahoo.com
Did this post help? Click below to let me know.