diff options
author | semenu <semenu@FreeBSD.org> | 1999-02-19 12:38:10 +0000 |
---|---|---|
committer | semenu <semenu@FreeBSD.org> | 1999-02-19 12:38:10 +0000 |
commit | f9df03b8e8894cd25d4c86b52125d71c79f0de96 (patch) | |
tree | 3b24d9f4ff1fdac5c2c41d5b0c623b14411698f3 /sbin/mount_ntfs | |
parent | 05d36e7aeab6b1f528acb24b6610b4982335afbe (diff) | |
download | FreeBSD-src-f9df03b8e8894cd25d4c86b52125d71c79f0de96.zip FreeBSD-src-f9df03b8e8894cd25d4c86b52125d71c79f0de96.tar.gz |
Added description of how they can access particulary
NTFS attribute and write files.
Diffstat (limited to 'sbin/mount_ntfs')
-rw-r--r-- | sbin/mount_ntfs/mount_ntfs.8 | 33 |
1 files changed, 32 insertions, 1 deletions
diff --git a/sbin/mount_ntfs/mount_ntfs.8 b/sbin/mount_ntfs/mount_ntfs.8 index c5158cb..ef5be1a 100644 --- a/sbin/mount_ntfs/mount_ntfs.8 +++ b/sbin/mount_ntfs/mount_ntfs.8 @@ -80,13 +80,44 @@ on which the file system is being mounted. Specify the maximum file permissions for files in the file system. .El +.Sh FEATURES +NTFS file attributes are accessed in following way: +.Bd -literal -offset indent +foo[[:ATTRTYPE]:ATTRNAME] +.Ed +.Pp +.Sq ATTRTYPE +is one of indentifier listed in $AttrDef file of +volume. Default is $DATA. +.Sq ATTRNAME +is an attribute name. Default is none. +.Sh EXAMPLES +To mount an ntfs volume located in /dev/wd1s1: +.Bd -literal -offset indent +# mount_ntfs /dev/wd1s1 /mnt +.Ed +.Pp +To get volume name (in Unicode): +.Bd -literal -offset indent +# cat /mnt/\\$Volume:\\$VOLUME_NAME +.Ed +.Pp +To read directory raw data: +.Bd -literal -offset indent +# cat /mnt/foodir:\\$INDEX_ROOT:\\$I30 +.Ed +.Pp +.Sh WRITING +There is limited writing ability. Limitations: file must be nonresident +and must not contain any sparces (uninitialized areas), compressed +files are not supported either. .Sh SEE ALSO .Xr mount 2 , .Xr unmount 2 , .Xr fstab 5 , .Xr mount 8 .Sh CAVEATS -This utulity gives only read-only access to NTFS volume. +This utulity gives almost only read-only access to NTFS volume. See WRITING section. .Sh HISTORY The .Nm |