How could i mount a fat32 drive (my windows 98 drive)| using best linux. I am a total newbie to linux, and ive never used it before.
Also i know this may sound stupid, but i can find where to change the resolution with best linux.
(as root)
#>fdisk -l /dev/hda
(if the fat32 partition is on the primary master IDE drive, /dev/hdb for primary slave, /dev/hdc for sec. master or /dev/hdd for sec. slave)
3 issue the mount command based on the output from 2
#>mount /dev/hda1 /mnt/fat32
(if the fat32 partition is somewhere else, just substiture the correct partition for /dev/hda1)
Your FAT32 partition should now be available for browsing under /mnt/fat32.
To unmount the command is:
#>umount /mnt/fat32
To automatically mount during system start, edit the /etc/fstab file, and add the following entry at the end
/dev/hdb1 /mnt/fat32 vfat defaults 1 1 AV
tnedor@yahoo.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.