Navigation:Documentation:Other:Link Collection:~~CLOUD:30~~ |
Table of Contents
How to mount you NTFS volumePlease read the NTFS FAQ (or in other languages) sections 4.5, 4.9 & 4.10. Executive summaryVia the command line: mkdir /mnt/windows mount /dev/hda1 /mnt/windows -t ntfs -o umask=0002,nls=utf8 via /etc/fstab: /dev/hda1 /mnt/windows ntfs ro,umask=0002,nls=utf8 Redhat/Fedora usersYour distribution does not support the kernel driver out of the box. Either download an RPM, or look at ntfsmount. ntfsmountThere is also a different driver than the one mentioned above, which is based on FUSE. See the ntfsmount for more details. Executive summaryVia the command line: mkdir /mnt/windows ntfsmount /dev/hda1 /mnt/windows -o umask=0002,silent via /etc/fstab: /dev/hda1 /mnt/windows ntfs-fuse umask=0002,silent,locale=utf8 |