Results 1 to 4 of 4
Windows partition won't mount automatically at boot.. It's accessible only to root., despite "user" option in fstab .
gparted lists NTFS partition as
/dev/hda1
Output of parted :
Code:
Number ...
- 03-04-2009 #1
[SOLVED] fstab: should be child's play
Windows partition won't mount automatically at boot.. It's accessible only to root., despite "user" option in fstab.
gparted lists NTFS partition asOutput of parted:/dev/hda1Pertinent line in fstab:Code:Number Start End Size Type File system Flags 1 32.3kB 40.0GB 40.0GB primary ntfs boot
What am I missing? Thanks in advance for any help available.# <file system> <mount point> <type> <options> <dump> <pass>
/dev/hda1 /media/windows ntfs auto,user,noexec,rw,sync 0 0
- 03-04-2009 #2
Does it give you an error message when you give a
mount -a command?
- 03-04-2009 #3
Are you sure its hda1 not sda1? Check the output of fdisk -l command.
Code:su - fdisk -l
There is no need to use all those options. defaults,umask=0 is enough.auto,user,noexec,rw,sync 0 0
In case it doesn't work, post the output of mount -a command as suggested by rcgreen.Code:/dev/hda1 /media/windows ntfs defaults,umask=0 0 0
It is amazing what you can accomplish if you do not care who gets the credit.
New Users: Read This First
- 03-04-2009 #4
fstab: should be child's play
Thanks, everyone. Yes, umask=022, (picked up at Debian Forums) was the solution. Don't know the difference between umask=0 and umask=022, but the latter works, so I'm satisfied. Thanks again.



