Deleted Added
sdiff udiff text old ( 50476 ) new ( 57668 )
full compact
1.\"
2.\" Copyright (c) 1993,1994 Christopher G. Demetriou
3.\" Copyright (c) 1999 Semen Ustimenko
4.\" All rights reserved.
5.\"
6.\" Redistribution and use in source and binary forms, with or without
7.\" modification, are permitted provided that the following conditions
8.\" are met:

--- 14 unchanged lines hidden (view full) ---

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.
30.\"
31.\" $FreeBSD: head/sbin/mount_ntfs/mount_ntfs.8 57668 2000-03-01 11:27:47Z sheldonh $
32.\"
33.Dd Jan 3, 1999
34.Dt MOUNT_NTFS 8
35.Os FreeBSD
36.Sh NAME
37.Nm mount_ntfs
38.Nd mount an NTFS file system
39.Sh SYNOPSIS

--- 44 unchanged lines hidden (view full) ---

84.Sh FEATURES
85NTFS file attributes are accessed in following way:
86.Bd -literal -offset indent
87foo[[:ATTRTYPE]:ATTRNAME]
88.Ed
89.Pp
90.Sq ATTRTYPE
91is one of identifier listed in $AttrDef file of
92volume.
93Default is $DATA.
94.Sq ATTRNAME
95is an attribute name.
96Default is none.
97.Sh EXAMPLES
98To mount an ntfs volume located in
99.Pa /dev/wd1s1 :
100.Bd -literal -offset indent
101# mount_ntfs /dev/wd1s1 /mnt
102.Ed
103.Pp
104To get volume name (in Unicode):
105.Bd -literal -offset indent
106# cat /mnt/\\$Volume:\\$VOLUME_NAME
107.Ed
108.Pp
109To read directory raw data:
110.Bd -literal -offset indent
111# cat /mnt/foodir:\\$INDEX_ROOT:\\$I30
112.Ed
113.Pp
114.Sh WRITING
115There is limited writing ability.
116Limitations: file must be nonresident
117and must not contain any sparces (uninitialized areas), compressed
118files are not supported either.
119.Sh SEE ALSO
120.Xr mount 2 ,
121.Xr unmount 2 ,
122.Xr fstab 5 ,
123.Xr mount 8
124.Sh CAVEATS
125This utility gives almost only read-only access to NTFS volume.
126See
127.Sx WRITING
128section.
129.Sh HISTORY
130The
131.Nm
132first appeared in
133.Fx 3.0 .
134.Sh AUTHORS
135NTFS kernel implementation,
136.Nm
137and manual were written by
138.An Semen Ustimenko Aq semenu@FreeBSD.org .