ntfs-3g/README

165 lines
5.7 KiB
Plaintext
Raw Normal View History

2006-10-31 06:32:48 +08:00
INTRODUCTION
============
The NTFS-3G driver is an open source, freely available read/write NTFS driver
2009-11-14 01:27:53 +08:00
for Linux, FreeBSD, Mac OS X, NetBSD, OpenSolaris, QNX and Haiku. It provides
safe and fast handling of the Windows XP, Windows Server 2003, Windows 2000,
Windows Vista, Windows Server 2008 and Windows 7 file systems.
The purpose of the project is to develop, quality assurance and support a
trustable, featureful and high performance solution for hardware platforms
and operating systems whose users need to reliably interoperate with NTFS.
Besides this practical goal, the project also aims to explore the limits
of the hybrid, kernel/user space filesystem driver approach, performance,
reliability and feature richness per invested effort wise.
Besides the common file system features, NTFS-3G has support for file
ownership and permissions, POSIX ACLs, junction points, extended attributes
and creating internally compressed files (parameter files in the directory
.NTFS-3G may be required to enable them). The new compressed file formats
available in Windows 10 can also be read through a plugin. For using
advanced features, please get the instructions from
2006-10-31 06:32:48 +08:00
http://www.tuxera.com/community/ntfs-3g-advanced/
2006-10-31 06:32:48 +08:00
2007-02-21 04:14:19 +08:00
News, support answers, problem submission instructions, support and discussion
forums, performance numbers and other information are available on the project
web site at
2009-11-14 01:27:53 +08:00
http://www.tuxera.com/community/
2006-10-31 06:32:48 +08:00
LICENSES
========
All the NTFS related components : the file system drivers, the ntfsprogs
utilities and the shared library libntfs-3g are distributed under the terms
of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version. See the included file COPYING.
The fuse-lite library is distributed under the terms of the GNU LGPLv2.
See the included file COPYING.LIB.
2006-10-31 06:32:48 +08:00
QUICK INSTALLATION
==================
Linux: Make sure you have the basic development tools and the kernel includes
the FUSE kernel module. Then unpack the source tarball and type:
2006-10-31 06:32:48 +08:00
./configure
make
make install # or 'sudo make install' if you aren't root.
Please note that NTFS-3G doesn't require the FUSE user space package any
more.
The list of options for building specific configurations is displayed by
typing :
./configure --help
Below are a few specific options to ./configure :
--disable-ntfsprogs : do not build the ntfsprogs tools,
--enable-extras : build more ntfsprogs tools,
--disable-plugins : disable support for plugins
--enable-posix-acls : enable support for Posix ACLs
--enable-xattr-mappings : enable system extended attributes mappings
--with-fuse=external : use external fuse (overriding Linux default)
There are also a few make targets for building parts :
make libntfs : only build the libntfs-3g library
make libs : only build libntfs-3g (and libfuse-lite, if relevant)
make drivers : only build drivers and libraries, without ntfsprogs
make ntfsprogs : only build ntfsprogs and libntfs-3g, without drivers
2009-11-14 01:27:53 +08:00
Non-Linux: Please see
http://www.tuxera.com/community/ntfs-3g-download/
for known OS specific installation and source packages, but generally
the same procedures apply.
2006-10-31 06:32:48 +08:00
USAGE
=====
If there was no error during installation then the NTFS volume can be
read-write mounted for everybody the following way as the root user
(unmount the volume if it was already mounted, and replace /dev/sda1
and /mnt/windows, if needed):
2006-10-31 06:32:48 +08:00
mount -t ntfs-3g /dev/sda1 /mnt/windows
2007-02-07 03:25:55 +08:00
or
ntfs-3g /dev/sda1 /mnt/windows
2006-10-31 06:32:48 +08:00
Please see the ntfs-3g manual page for more options and examples.
You can also make NTFS to be mounted during boot by putting the below
2009-11-14 01:27:53 +08:00
line at the END(!) of the /etc/fstab file:
2006-10-31 06:32:48 +08:00
/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
2009-11-14 01:27:53 +08:00
TESTING WITHOUT INSTALLING
=========================
Newer versions of ntfs-3g can be tested without installing anything and
without disturbing an existing installation. Just configure and make as
shown previously. This will create the scripts ntfs-3g and lowntfs-3g
in the src directory, which you may activate for testing :
./configure
make
then, as root :
src/ntfs-3g [-o mount-options] /dev/sda1 /mnt/windows
And, to end the test, unmount the usual way :
umount /dev/sda1
NTFS UTILITIES
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
==============
The ntfsprogs includes utilities for doing all required tasks to NTFS
partitions. In general, just run a utility without any command line
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
options to display the version number and usage syntax.
The following utilities are so far implemented:
ntfsfix - Attempt to fix an NTFS partition and force Windows to check NTFS.
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
mkntfs - Format a partition with the NTFS filesystem. See man 8 mkntfs for
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
command line options.
ntfslabel - Display/change the label of an NTFS partition. See man 8 ntfslabel
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
for details.
ntfsundelete - Recover deleted files from an NTFS volume. See man 8
add ntfsundelete to the build. fix rpm build. trawl for typos. 2002/04/12 15:23:47-00:00 !antona Cleanup ntfslabel, write a man page for it, integrate it all in the distribution properly, silence output from ntfs_mount() (conditional on running configure with --enable-debug), update all docs accordingly. Add Rich and Matt to AUTHORS. 2002/03/12 21:55:30-00:00 !antona Update docs and bump version to 1.6.0. 2002/01/26 02:28:29-00:00 !antona Update docs. 2002/01/10 10:54:27-00:00 !antona Updates 2002/01/10 10:19:29-00:00 !antona Update changelog. 2001/12/06 01:16:32-00:00 !antona Update version number for ntfsfix 2001/11/10 16:24:11-00:00 !antona More logfile size updates so we are more sane with floppies. 2001/11/10 14:47:39-00:00 !antona Debug display bug fixes. 2001/11/10 14:27:38-00:00 !antona And more typos. 2001/11/10 14:25:33-00:00 !antona Oops. Didn't compile. Typo 2001/11/10 14:22:15-00:00 !antona Remove obsoleted disklabel.h stuff. 2001/11/10 14:17:39-00:00 !antona Enhance mkntfs' device size determination. 2001/11/10 03:06:05-00:00 !antona Bug fixes and debug output enhancements. 2001/11/09 23:36:16-00:00 !antona Bug fixes 2001/11/09 21:30:51-00:00 !antona Considering added functionality change version number to 1.3.0, update docs and mkntfs man page. 2001/11/09 18:24:32-00:00 !antona Updates to docs, layout.h and ntfsfix to support Windows XP NTFS 2001/08/27 16:58:07-00:00 !antona Updates. 2001/08/02 01:44:56-00:00 !antona Add ntfsfix man page and spell fixes. Update to 1.2.1 version and update all text files to go with it and the rpm spec file. 2001/07/25 23:11:49-00:00 !antona Update text files 2001/07/24 17:41:01-00:00 !antona Minor updates and restructuring the distribution. See NEWS and ChangeLog for details. 2001/06/16 19:59:51-00:00 !antona Update ntfsdump_logfile and dumplog and the relevant textfiles. 2001/06/16 19:23:39-00:00 !antona Version number update 2001/06/16 19:22:45-00:00 !antona Get rid of logfile stuff for mkntfs as it is clearly not needed. 2001/06/13 19:04:20-00:00 !antona Final prerelease. Updated version numbers of mkntfs in readme and rpm spec files. 2001/06/11 19:11:37-00:00 !antona Fix rpm generation. Circumvent configure bug by cheating in configure.in moving around nonopt to host and setting nonopt to NONE. 2001/06/10 18:30:16-00:00 !antona Preparations for the 0.1.0 release. Updating documentation and information. Updating rpm generation and added mkntfs man page which currently is not accurate as it shows all the mke2fs options in it while mkntfs doesn't actually accept any options except for device at all but it is a good starting point. 2001/02/02 01:15:17-00:00 !antona Updated documentation and other text files. Preparing for initial release. 2001/02/02 00:16:18-00:00 !antona Changed make process to using autoconf/automake/libtool. Added necessary files for this and for the gnu standard. Inititial checkin. Probably still stuff missing. Will know soon... (Logical change 1.5)
2002-08-23 02:09:47 +08:00
ntfsundelete for more details.
2002-12-10 19:53:41 +08:00
ntfsresize - Resize NTFS volumes. See man 8 ntfsresize for details.
2002-12-10 19:53:41 +08:00
ntfsclone - Efficiently create/restore an image of an NTFS partition. See
2003-09-30 17:42:38 +08:00
man 8 ntfsclone for details.
ntfscluster - Locate the owner of any given sector or cluster on an NTFS
partition. See man 8 ntfscluster for details.
2003-09-30 17:42:38 +08:00
ntfsinfo - Show some information about an NTFS partition or one of the files
or directories within it. See man 8 ntfsinfo for details.
2003-09-30 17:42:38 +08:00
ntfsrecover - Recover updates committed by Windows but interrupted before
being synced.
2003-09-30 17:42:38 +08:00
ntfsls - List information about files in a directory residing on an NTFS
partition. See man 8 ntfsls for details.
2003-09-30 17:42:38 +08:00
ntfscat - Concatenate files and print their contents on the standard output.
ntfscp - Overwrite files on an NTFS partition.
ntfssecaudit : audit the security metadata.
ntfsusermap : assistance for building a user mapping file.