Click to See Complete Forum and Search --> : how can i share a fat 32 partition with win XP and rh Linux 7.2


akshay
08-04-2002, 10:20 PM
Hey guys,

i am running win xp and rh 7.2 on my box and want to share one of the fat 32 partition with both linux and xp to share some files can anyone guide me how do i do that...please

i have both my operating systems on the same hdd.......

thanks in advance
:D

i_like_peanut_butter
08-04-2002, 10:31 PM
Create a mountpoint for your partition then add a line in /etc/fstab to mount it when you boot.

/dev/hda2 /mnt/win vfat rw 0 0

is an example line you could use. Check your fstab for formatting and whatnot. The first entry is the partition, second is the mountpoint, 3rd is the filesystem type. The rest tells the OS that it is read/write and that it is not to be checked if you have to fsck your drives after a crash.

Also do a man fstab to get more details.