Mourning the loss of our friend, WhitPhil.
There's no such thing as a stupid question, but they're the easiest to answer.
JoinTour
Login
Search
 
Linux and Unix
Tag Cloud
access audio black screen blue screen boot bsod connection crash dell desktop drivers dvd email error excel excel 2003 firefox hard drive hardware hijackthis internet keyboard laptop malware monitor motherboard network networking outlook problem ram recovery router safe mode screen slow sound spyware tdlwsp.dll trojan vba video virus vista vundo windows windows 7 windows vista windows xp wireless
Search
Search for:
Tech Support Guy Forums > Operating Systems > Linux and Unix >
Mount a Fat32 Partition

Tip: Click here to scan for System Errors and Optimize PC performance
[ Sponsored Link ]

Closed Thread
 
Thread Tools
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
05-Mar-2004, 02:36 PM #1
Mount a Fat32 Partition
how do i mount a fat32 partition and make it read/write
utanja
codejockey's Avatar
Senior Member with 1,410 posts.
 
Join Date: Feb 2002
05-Mar-2004, 02:53 PM #2
As root, do the following:
  • create the mount point (directory) where the FAT-32 filesystem will be mounted. You can use the mkdir command or a graphical interface to create the directory.
  • at the command line, give the command: mount -t vfat device-name directory-name where device-name is the partition that contains the FAT-32 filesystem and directory-name is the mount point you created.

For example, if I want to mount a FAT-32 filesystem that resides on /dev/hda1 on a directory named win98c, I would use the commands:
  • mkdir /win98c
  • mount -t vfat /dev/hda1 /win98c

Hope this helps.
__________________
The slowest component still sits at the keyboard.
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
05-Mar-2004, 05:59 PM #3
thank you so much ......just what i look for.....
i have to move some iso from the linux partition to the WinXP

now is it possible to have it automount at boot time as well?
codejockey's Avatar
Senior Member with 1,410 posts.
 
Join Date: Feb 2002
05-Mar-2004, 09:02 PM #4
You are welcome -- glad that I was able to help. Yes, you can have your FAT-32 partition(s) mounted automatically when you boot. You will need an entry for each partition in your /etc/fstab file. The typical entry will look something like:

/dev/hda1 /win98c vfat defaults 1 0

You can use the existing entries in the file as a guide. Each entry tells Linux which partition to mount, which mount point (directory) to use, the filesystem type, the mount options and additional information for filesystem checking. For more information about what each field in the entry means, give the following command at the command line: man fstab

Hope this helps.
__________________
The slowest component still sits at the keyboard.
tnik's Avatar
Senior Member with 730 posts.
 
Join Date: Aug 2003
05-Mar-2004, 09:22 PM #5
just a tip, I wouldn't mount a NTFS with write enabled, it tends to corrupt the file system...
Squashman's Avatar
Distinguished Member with 14,983 posts.
 
Join Date: Apr 2003
Location: 1265 Lombardi Ave
Experience: IIAHYAYCESA,YAADA!
05-Mar-2004, 11:35 PM #6
Quote:
Originally posted by utanja:
thank you so much ......just what i look for.....
i have to move some iso from the linux partition to the WinXP
This will work as well.

Explore2fs
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
06-Mar-2004, 06:29 AM #7
Quote:
Originally posted by tnik:
just a tip, I wouldn't mount a NTFS with write enabled, it tends to corrupt the file system...

ja...i this understood before.....i mount my d: partition which i keep as fat32....the c: partition is NTFS and i understand that it is not mountable....but that is not a problem....

again thank you so much for you rapid response...things in RH9 are diferent from the earlier releases is many case...
__________________
utanja
i am female i don't do windows.. and i definitely don't do macs ..i fly a Lear Jet
"Wer fremde Sprachen nicht kennt, weiß nichts von seiner eigenen."
- Goethe, Maximen und Reflexionen
Intel P4-2.4GHz;1024Mb(1gig);Debian Linux Sid[2.6.26 custom kernel]Network
7 workstations Mozilla/Firebird browsers/NX/Citrix/VMware
my american friends call me tonya
tnik's Avatar
Senior Member with 730 posts.
 
Join Date: Aug 2003
06-Mar-2004, 02:08 PM #8
NTFS is mountable, you can read from it all day long, but writing to it is still under development..
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
06-Mar-2004, 08:43 PM #9
Quote:
Originally posted by tnik:
NTFS is mountable, you can read from it all day long, but writing to it is still under development..
yes thank you.....but the RedHat9 distrio default kernel does not support this so i guess i must built a custom kernel....

i am researching how to do this....from the redhat custom config manual....but if you any other options have.please let me know...
again...thank you so much for your help...
__________________
utanja
i am female i don't do windows.. and i definitely don't do macs ..i fly a Lear Jet
"Wer fremde Sprachen nicht kennt, weiß nichts von seiner eigenen."
- Goethe, Maximen und Reflexionen
Intel P4-2.4GHz;1024Mb(1gig);Debian Linux Sid[2.6.26 custom kernel]Network
7 workstations Mozilla/Firebird browsers/NX/Citrix/VMware
my american friends call me tonya
tnik's Avatar
Senior Member with 730 posts.
 
Join Date: Aug 2003
07-Mar-2004, 01:25 PM #10
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
08-Mar-2004, 01:54 AM #11
Quote:
Originally posted by tnik:
http://linux-ntfs.sourceforge.net/info/ntfs.html#3.5

here ya go..
and thank you so much for the perfect finish to this thread...
just what i needed to do but was ready to recompile the kernel....

works prima....

you save me much time and aggrevation...
tnik's Avatar
Senior Member with 730 posts.
 
Join Date: Aug 2003
14-Mar-2004, 06:08 PM #12
anytime, always glad to help
Squashman's Avatar
Distinguished Member with 14,983 posts.
 
Join Date: Apr 2003
Location: 1265 Lombardi Ave
Experience: IIAHYAYCESA,YAADA!
16-Mar-2004, 09:59 AM #13
Quote:
Originally posted by utanja:
and thank you so much for the perfect finish to this thread...
just what i needed to do but was ready to recompile the kernel....

works prima....

you save me much time and aggrevation...
Did you try my link above.

Quote:
Originally posted by LwdSquashman:
This will work as well.

Explore2fs
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
16-Mar-2004, 04:27 PM #14
Quote:
Originally posted by LwdSquashman:
Did you try my link above.
i just download it earlier this week but have not had chance yet to try out.....i will install later tonite and let you know what i think....
utanja's Avatar
Computer Specs
Senior Member with 308 posts.
 
Join Date: Oct 2003
Location: Europe:Salzburg Austria;USA:Fl
Experience: a little education can be
17-Mar-2004, 06:04 PM #15
Explore2fs [/b][/quote]

ok....thank you so much....yes this appear to be a wunderfull tool for dual boot systems.....seems to work ok...but i will not try to write to ext3 files until i get a chance to try it on my test box which currently i am testing slackware 9.1 but i am not totally convince that i want to change from RH9....been using redhat since rh6...and unix5 before that....

i did try writing to ntfs with this tool and did not have a problem copying test files....

again....thank you so much....
__________________
utanja
i am female i don't do windows.. and i definitely don't do macs ..i fly a Lear Jet
"Wer fremde Sprachen nicht kennt, weiß nichts von seiner eigenen."
- Goethe, Maximen und Reflexionen
Intel P4-2.4GHz;1024Mb(1gig);Debian Linux Sid[2.6.26 custom kernel]Network
7 workstations Mozilla/Firebird browsers/NX/Citrix/VMware
my american friends call me tonya
Closed Thread Bookmark and Share

THIS THREAD HAS EXPIRED.
Are you having the same problem? We have volunteers ready to answer your question, but first you'll have to join for free. Need help getting started? Check out our Welcome Guide.

Smart Search

Find your solution!



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
WELCOME TO TECH SUPPORT GUY! Are you looking for the solution to your computer problem? Join our site today to ask your question -- for free! Our site is run completely by volunteers who want to help you solve your computer problems. See our Welcome Guide to get started.

Thread Tools


You Are Using:
Server ID
Advertisements do not imply our endorsement of that product or service.
All times are GMT -5. The time now is 11:43 PM.
Copyright © 1996 - 2009 TechGuy, Inc. All rights reserved.
Powered by vBulletin, Copyright © 2000 - 2009, Jelsoft Enterprises Ltd.
Powered by Cermak Technologies, Inc.