If I mount the drive using Linux, mounting as type vfat, I can see the
files on the drive just fine.
When I mount the drive using Windows XP, it shows up as an unformatted
drive or as a RAW disk.
Using the Linux box cannot be my solution due to the requirements of
the project.
How can I get Windows to properly mount and recognize this drive so
that I can access the data on it?
Thanks.
It has a partition table. Partition 1 is supposed to be FAT32.
Partition 2 is supposed to be FAT16.
Mounted on Fedora Linux:
# fdisk -l /dev/sde
Disk /dev/sde: 118 GB, 118833779712 bytes
255 heads, 63 sectors/track, 14447 cylinders
Units= cylinders of 16065 * 512 = 8225280 bytes
Sector Size (logical/physical): 512 bytes / 512 bytes
I/O Size (minimum/optimal): 512 bytes/512 bytes
Disk Identifier: 0x00000000
Device Boot Start End Blocks Id System
/dev/sde1 * 1 14448 116048614+ c W95 FAT32
(LBA)
Partition 1 does not end on cylinder boundary.
/dev/sde2 14448 14594 1172178 6 FAT16
Partition 2 does not end on cylinder boundary.
# fsck.vfat /dev/sde1
dosfsck 3.0.9, 31 Jan 2010, FAT32, LFN
Seek to 118833780224: Invalid Argument
Thanks for your response.