View previous topic :: View next topic |
Author |
Message |
D. M. P. inc Apprentice
Joined: 29 Sep 2003 Posts: 228 Location: /home/dmpinc
|
Posted: Thu Oct 23, 2003 7:11 pm Post subject: how to mount windows on linux |
|
|
i have been looking around and been trying what ever i saw but still no luck
i have 1 windows partiton that has XP but is still a fat32 format coz i only updated from 2000 to XP. can someone tell me how to mount da windows partition
/dev/hda1 /WINNT vfat rw,noexec,umask=0000 0 0
/dev/hda1 /mnt/WINNT vfat rw,noexec,umask=0000 0 0
this 2 dont work
any ideas? _________________ Live And Learn. |
|
Back to top |
|
|
Caffeine Guru
Joined: 17 Jul 2002 Posts: 401 Location: Melbourne, Australia
|
Posted: Thu Oct 23, 2003 7:16 pm Post subject: |
|
|
From the command line try:
Code: | # mkdir /mnt/dos1
# mount -t vfat /dev/hda1 /mnt/dos1
|
In my fstab file I've got
Code: | /dev/hda1 /mnt/dosc vfat uid=1000,gid=100 0 0 |
Where I'm uid 1000 |
|
Back to top |
|
|
D. M. P. inc Apprentice
Joined: 29 Sep 2003 Posts: 228 Location: /home/dmpinc
|
Posted: Thu Oct 23, 2003 7:31 pm Post subject: |
|
|
thanx _________________ Live And Learn. |
|
Back to top |
|
|
MasterX Veteran
Joined: 26 Jun 2003 Posts: 1165
|
Posted: Thu Oct 23, 2003 8:55 pm Post subject: |
|
|
I do not want Non-linux partition to be mounted automaticaly. I prefer to mount them whenever I want to.
So, in the fstab I ahve this entry
Code: |
/dev/hda1 /mnt/win vfat noauto,rw,user 1 2
|
The last two entries (1,2) have to do with some tests. You can keep 0 0 if you want to
noauto, means that it is not mounted automaticaly.
user, means that any user can mount it, and the user will have read/write permission on the partition |
|
Back to top |
|
|
|