Results 1 to 2 of 2
Anyone help me to mount fat32 in Linux 9.0.
I'm new to linux....
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 02-20-2006 #1Just Joined!
- Join Date
- Feb 2006
- Posts
- 2
Mountinf Fat32
Anyone help me to mount fat32 in Linux 9.0.
I'm new to linux.
- 02-20-2006 #2
Google! (The answer is everywhere on the Internet.)
Or just:
1) Create a directory where you want to mount the partition:
2) Make a symlink for it in your home directory:Code:cd /mnt sudo mkdir windows
3) Verify where the windows partition is presentCode:cd ln -s /mnt/windows
If the result is /dev/hda1 (for example)Code:sudo fdisk -l | grep -i fat32
4) Mount the partition
5) If you want it to be mounted automatically when you start your machine, add this line to /etc/fstab:Code:sudo mount -t vfat -o rw,noexec,umask=0000 /dev/hda1 /mnt/windows
/dev/hda1 /mnt/windows vfat umask=0000,auto,noexec 0 0
[/code]
Have fun!"To express yourself in freedom, you must die to everything of yesterday. From the 'old', you derive security; from the 'new', you gain the flow."
-Bruce Lee


Reply With Quote
