Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Accessing Data on a FAT32 Partition 2

Status
Not open for further replies.

Michael42

Programmer
Oct 8, 2001
1,454
US
If I have a FAT32 partition with data on it. How can I get LINUX to recognize it so I can access (read, write, delete) files on it?

Thanks for your advice! Michael

MCSE NT\2000, UNIX, Novell
Java, JSP, ASP, VB
 
You need to mount the partition.
mount -t msdos /dev/hd? /mnt/wherever
^
this is the drive and partition info (hda1)
also the directory wherever has to be in existence before you mount to it.
 
Thanks franklin. It is getting easier and easier for me (an MCSE boy) to wave bye-bye to Bill G. and posse.

This forum rocks - always knowlegable techs here.

Michael

MCSE NT\2000, UNIX, Novell
Java, JSP, ASP, VB
 
Actually, you should use vfat instead of msdos as the filesystem. msdos will mount it as a FAT16, while vfat will mount it as a FAT32.

ChrisP ------------------------------------------------------------------------------
If somebody helps you, please click the link in the botton left hand corner that says "Mark this post as a helpful/expert post".
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top