LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   Ntfs (https://www.linuxquestions.org/questions/linux-software-2/ntfs-150580/)

dbzw 02-25-2004 09:41 PM

Ntfs
 
Hi everyone,
I have some trouble with changing the permissions of an ntfs mount. I went to the website that I downloaded the rpm from and I got instructions but I don't quite get it. What is umask, uid, and flatcap? I'm very confused.

Also I don't quite get how to automatically mount the ntfs partition. What's all the "-t" and "-r" buisness about?

Please help!
Thanks

win32sux 02-25-2004 11:10 PM

well, the "-t" just means the type of filesystem and the "-r" just means "read only" (in other words, it's a shortcut for "-o ro"...

for example, if i wanted to mount "read-only" the first partition of my secondary master ide disk, which was formatted with the reiser filesystem:

mkdir /mnt/stuff

mount -t reiserfs -r /dev/hdc1 /mnt/stuff


and if i wanted to mount it at startup automagically, then i'd need to edit my /etc/fstab...

something like:

/dev/hdc1 /mnt/stuff reiserfs defaults 1 2


http://www.die.net/doc/linux/man/man8/mount.8.html

http://www.die.net/doc/linux/man/man5/fstab.5.html

http://linux-ntfs.sourceforge.net/


All times are GMT -5. The time now is 03:32 AM.