Mounting Windows FAT32 Partition in Fedora 9
August 22, 2009 at 6:46 am | In Computer | 3 CommentsTags: Computer, Fedora, Linux
[Linux]
Finally! I got my windows partition mounted on Fedora 9. After looking and searching on Google, here’s how I got it worked :
First of all, I’ll list the output of :
[mirantirahmani@localhost ~]$ su -c '/sbin/fdisk -l'
Password:
Disk /dev/sda: 160.0 GB, 160041885696 bytes
255 heads, 63 sectors/track, 19457 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x8f800000
Device Boot Start End Blocks Id System
/dev/sda1 * 1 4462 35840983+ 7 HPFS/NTFS
/dev/sda2 4463 19456 120439305 f W95 Ext'd (LBA)
/dev/sda5 4463 8286 30716248+ b W95 FAT32
/dev/sda6 8287 12110 30716248+ b W95 FAT32
/dev/sda7 12111 14660 20482843+ b W95 FAT32
/dev/sda8 14661 16572 15358108+ 83 Linux
/dev/sda9 16573 16891 2562336 82 Linux swap / Solaris
/dev/sda10 16892 19456 20603331 83 Linux
(I marked my windows FAT32 partition in red and bold. I only mount three of them coz i dont think i’ll use the content of my NTFS partition)
I do it just to figure out where my FAT32 partitions are.
Next step is making mount points for those 3 partitions.
I would prefer login as root. Then, I wrote down commands:
mkdir /media/disk1 mkdir /media/disk2 mkdir /media/disk3
I used disk1 for /dev/sda5 partition, disk2 for /dev/sda6, and disk3 for /dev/sda7. you can actually rename the mount point directory into anything you like but make sure you remember it ![]()
The number of mount point you need to mak depends on how many partition you’d like to mount. like in my case, there are 3 partitions to be mounted.
Next, start mounting the partition
I wrote down commands:
mount -t vfat /dev/sda5 /media/disk1 mount -t vfat /dev/sda6 /media/disk2 mount -t vfat /dev/sda7 /media/disk3
To make it permanent
I used command:
gedit /etc/fstab
then I added line into the file /etc/fstab:
/dev/sda5 /media/disk1 vfat defaults 0 0 /dev/sda6 /media/disk2 vfat defaults 0 0 /dev/sda7 /media/disk3 vfat defaults 0 0
then save.
That will cause the partition to be mounted at boot time.
It worked! yayz~
you can try this on your own :-}
3 Comments »
RSS feed for comments on this post. TrackBack URI
Leave a comment
Blog at WordPress.com. | Theme: Pool by Borja Fernandez.
Entries and comments feeds.

mirantiiii tau website yg bisa download mp3 nya lagu2 Toshi Kubota ga???
Comment by queen.B — October 15, 2009 #
fedora 9 i386 doesn’t support my mousepad.
anyway, that way’s better than to mount to windows partition (/dev/sda1). but then i don’y know what happen if the dev/sda5 ,6 deleted from windows, like deleting logical drive. will bootloader (grub) come and tell something about chainloader?
Comment by night — October 16, 2009 #
Mounting Windows FAT32 Partition in Fedora 9 .Thanks for nice post.I added to my twitter.
Comment by techwoo — January 10, 2010 #