On 2/28/06, chen li <chen_li3@xxxxxxxxx> wrote:
hey,Thanks all for reply to my previous posts.
Now I have several other questions:1) I resize the
hardware and create a partition (10G) as FAT32 and
label it as E under windows XP. How do I read it from
Linux FC4? I use the following commands under FC4:
1) mkdir /mnt/FAT32
2) mount -t FAT32 /dev/hda1 /mnt/FAT32
but it doesn't work. Could any expert out there give
me a hand?
it should be
mount -t vfat /dev/hda1 /mnt/FAT32
or you can permanently mount it through /etc/fstab
put these entries in your /etc/fstab
/dev/hda1 /mn/FAT32 vfat defaults 0 0
Regards
Ankush Grover