2 .\" Copyright (c) 1993,1994 Christopher G. Demetriou
3 .\" Copyright (c) 1999 Semen Ustimenko
4 .\" All rights reserved.
6 .\" Redistribution and use in source and binary forms, with or without
7 .\" modification, are permitted provided that the following conditions
9 .\" 1. Redistributions of source code must retain the above copyright
10 .\" notice, this list of conditions and the following disclaimer.
11 .\" 2. Redistributions in binary form must reproduce the above copyright
12 .\" notice, this list of conditions and the following disclaimer in the
13 .\" documentation and/or other materials provided with the distribution.
14 .\" 3. All advertising materials mentioning features or use of this software
15 .\" must display the following acknowledgment:
16 .\" This product includes software developed by Christopher G. Demetriou.
17 .\" 3. The name of the author may not be used to endorse or promote products
18 .\" derived from this software without specific prior written permission
20 .\" THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21 .\" IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
22 .\" OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
23 .\" IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
24 .\" INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
25 .\" NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
26 .\" DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
27 .\" THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 .\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
29 .\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 .\" $FreeBSD: src/sbin/mount_ntfs/mount_ntfs.8,v 1.6.2.9 2003/02/24 00:56:42 trhodes Exp $
32 .\" $DragonFly: src/sbin/mount_ntfs/mount_ntfs.8,v 1.2 2003/06/17 04:27:33 dillon Exp $
39 .Nd mount an NTFS file system
53 utility attaches the NTFS file system residing on the device
55 to the global file system namespace at the location
58 This command is normally executed by
60 at boot time, but can be used by any user to mount an
61 NTFS file system on any directory that they own (provided,
62 of course, that they have appropriate access to the device that
63 contains the file system).
65 The options are as follows:
68 Force behaviour to return MS-DOS 8.3 names also on
71 Make name lookup case insensitive for all names except POSIX names.
73 Set the owner of the files in the file system to
75 The default owner is the owner of the directory
76 on which the file system is being mounted.
78 Set the group of the files in the file system to
80 The default group is the group of the directory
81 on which the file system is being mounted.
83 Specify the maximum file permissions for files
93 for the description of this option.
96 NTFS file attributes are accessed in following way:
97 .Bd -literal -offset indent
98 foo[[:ATTRTYPE]:ATTRNAME]
102 is one of the identifiers listed in $AttrDef file of
106 is an attribute name.
109 To mount an ntfs volume located in
111 .Bd -literal -offset indent
112 # mount_ntfs /dev/ad1s1 /mnt
115 To get the volume name (in Unicode):
116 .Bd -literal -offset indent
117 # cat /mnt/\\$Volume:\\$VOLUME_NAME
120 To read directory raw data:
121 .Bd -literal -offset indent
122 # cat /mnt/foodir:\\$INDEX_ROOT:\\$I30
125 There is limited writing ability.
126 Limitations: file must be nonresident
127 and must not contain any sparces (uninitialized areas); compressed
128 files are also not supported.
136 This utility is primarily used for read access to an NTFS volume.
139 section for details about writing to an NTFS volume.
143 utility first appeared in
146 The NTFS kernel implementation,
148 utility, and manual were written by
149 .An Semen Ustimenko Aq semenu@FreeBSD.org .