I'm trying to mount my FAT32 partition (to be used to share data between WINXP and Solaris), but I can't figure out how to get Solaris to see the FAT32 partition.
My disk layout is as follows
DISK_1 74Gb
8 Gb NTFS WINXP
10 Gb Solaris 10 x86
57 Gb NTFS
DISK_2 250 Gb
10 Gb FAT32 (I want to use this as shared drive)
225 Gb NTFS
When I run this:
for f in /dev/rdsk/* ;
do
echo "$f = $(fstyp $f 2>/dev/null )";
done
There is no disk listed as pcfs so I don't know what to mount.
/Martin