Go to file
2010-12-16 17:34:47 +01:00
include Moved list.h into ntfsprogs and got rid of include/ntfs completely. 2010-12-16 17:34:47 +01:00
libfuse-lite Fixed mounting with a SLinux context (from Fedora #502946) 2010-10-01 10:43:31 +02:00
libntfs-3g Bugfixes for 'make extra'. 2010-12-16 10:08:34 +01:00
m4 fix build process: add m4/.keep 2009-10-03 08:00:54 +00:00
ntfsprogs Moved list.h into ntfsprogs and got rid of include/ntfs completely. 2010-12-16 17:34:47 +01:00
src Enabled renaming of system extended attributes 2010-10-26 08:59:52 +02:00
AUTHORS Implemented backup/restoring of encrypted files (by Martin Bene) 2009-05-20 14:17:31 +00:00
autogen.sh Removed the automatic 'configure' that happens in autogen.sh. It was really annoying me. 2010-12-02 16:37:47 +01:00
ChangeLog point to the detailed Changelog and give help how it can be generated 2007-09-01 11:39:53 +00:00
configure.ac Moved list.h into ntfsprogs and got rid of include/ntfs completely. 2010-12-16 17:34:47 +01:00
COPYING add COPYING file explicitely because autogen.sh doesn't create it automatic 2009-11-04 23:25:07 +00:00
COPYING.LIB add COPYING.LIB for fuse-lite 2009-10-04 01:54:39 +00:00
CREDITS Merge remote branch 'linux-ntfs/libntfs-3g_port' into PERMISSION_HANDLING_BRANCH 2010-12-15 17:12:30 +01:00
Makefile.am Bugfixes for 'make extra'. 2010-12-16 10:08:34 +01:00
NEWS add AUTHORS, ChangeLog, and NEWS files 2006-10-30 22:36:47 +00:00
README Merge remote branch 'linux-ntfs/libntfs-3g_port' into PERMISSION_HANDLING_BRANCH 2010-12-15 17:12:30 +01:00
TODO.ntfsprogs Update ntfscmp TODO list 2006-04-11 21:52:32 +00:00

INTRODUCTION
============

The NTFS-3G driver is an open source, freely available read/write NTFS driver 
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 compressed files. Parameter files in the directory .NTFS-3G may 
be required to enable them, please get the instructions from

	http://www.tuxera.com/community/ntfs-3g-advanced/

News, support answers, problem submission instructions, support and discussion 
forums, performance numbers and other information are available on the project 
web site at

	http://www.tuxera.com/community/


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:  

	./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.

Non-Linux: Please see 

	http://www.tuxera.com/community/ntfs-3g-download/

for OS specific installation and source packages.


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):

	mount -t ntfs-3g /dev/sda1 /mnt/windows
or
	ntfs-3g /dev/sda1 /mnt/windows

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 
line at the END(!) of the /etc/fstab file:

	/dev/sda1 /mnt/windows ntfs-3g defaults 0 0

NTFS UTILITIES
==============

The ntfsprogs includes utilities for doing all required tasks to NTFS 
partitions.  In general, just run a utility without any command line
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.

mkntfs - Format a partition with the NTFS filesystem.  See man 8 mkntfs for
command line options.

ntfslabel - Display/change the label of an NTFS partition.  See man 8 ntfslabel
for details.

ntfsundelete - Recover deleted files from an NTFS volume.  See man 8
ntfsundelete for more details.

ntfsresize - Resize NTFS volumes.  See man 8 ntfsresize for details.

ntfsclone - Efficiently create/restore an image of an NTFS partition.  See
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.

ntfsinfo - Show some information about an NTFS partition or one of the files
or directories within it.  See man 8 ntfsinfo for details.

ntfsls - List information about files in a directory residing on an NTFS
partition.  See man 8 ntfsls for details.

ntfscat - Concatenate files and print their contents on the standard output.

ntfscp - Overwrite files on an NTFS partition.