Results 1 to 2 of 2
Hai,
I was not able to mount FAT32 file system in RedHat Linux(Enterprise edition). I know that linux mounts fat32 system but this is something out of my reach. I ...
- 09-08-2009 #1Just Joined!
- Join Date
- Sep 2009
- Posts
- 1
can't mount FAT32 file system.....
Hai,
I was not able to mount FAT32 file system in RedHat Linux(Enterprise edition). I know that linux mounts fat32 system but this is something out of my reach. I need help with this.... help me.....
- 09-08-2009 #2
Welcome!
you are right, you can mount FAT file system.
usually linux mount them automatically.
if not, you need vfat to be installed.
first of all you need to identify which partition you wanted to mount and the type of partition.
you can find that by executing:
this will list all of your partition and their type.Code:su fdisk -l
then according to you partition name (i am assuming it as sda1 in your case it may be other)
do this:
then open your /etc/fstab and edit it to add following:Code:cd /media mkdir sda1
you can add to mount ntfs filesystem by adding(i am assuming it as sda1 in your case it may be other, infact you do not need this because you are mounting a FAT filesystem):Code:/dev/sda1 /media/sda1 vfat defaults,umask=0 0 0
you need to be root to edit /etc/fstab, you can open it in vi editor byCode:/dev/sda1 /media/sda1 ntfs-3g defaults,umask=0 0 0
to mount reboot or issueCode:su vi /etc/fstab
let us know how you go.Code:mount -a
Last edited by grishi_111; 09-08-2009 at 03:10 PM.
Sorry, it was unintentional.
You should have told me at least once and i could have fix it.
thanks for reminding me.


Reply With Quote