Find the answer to your Linux question:
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 ...
  1. #1
    Just 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.....

  2. #2
    Linux Newbie grishi_111's Avatar
    Join Date
    Oct 2007
    Location
    Jafarpur Sitharra(U.P.)/New Delhi, India
    Posts
    171
    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:
    Code:
    su
    fdisk -l
    this will list all of your partition and their type.
    then according to you partition name (i am assuming it as sda1 in your case it may be other)
    do this:
    Code:
    cd /media
    mkdir sda1
    then open your /etc/fstab and edit it to add following:
    Code:
    /dev/sda1  /media/sda1 vfat  defaults,umask=0 0 0
    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  ntfs-3g  defaults,umask=0 0 0
    you need to be root to edit /etc/fstab, you can open it in vi editor by
    Code:
    su
    vi /etc/fstab
    to mount reboot or issue
    Code:
     mount -a
    let us know how you go.
    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.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
...