Menu

Tree [17c9f8] PERMISSION_HANDLING_BRANCH /
 History

HTTPS access


File Date Author Commit
 include 2010-11-09 Jean-Pierre André Jean-Pierre André [48caa7] Took care of alignments needed on some processors
 libfuse-lite 2010-10-01 Jean-Pierre André Jean-Pierre André [b7fbd0] Fixed mounting with a SLinux context (from Fedo...
 libntfs-3g 2010-12-14 Jean-Pierre André Jean-Pierre André [17c9f8] Fixed deleting files using ignore_case option
 m4 2009-10-03 szaka szaka [172fad] fix build process: add m4/.keep
 src 2010-12-14 Jean-Pierre André Jean-Pierre André [19bfa1] Added descriptions of options recover/norecover...
 AUTHORS 2009-12-19 mechie mechie [a27d20] This commit was manufactured by cvs2svn to crea...
 COPYING 2009-11-04 szaka szaka [2005c9] add COPYING file explicitely because autogen.sh...
 COPYING.LIB 2009-10-04 szaka szaka [edcc2d] add COPYING.LIB for fuse-lite
 CREDITS 2009-12-19 mechie mechie [a27d20] This commit was manufactured by cvs2svn to crea...
 ChangeLog 2007-09-01 szaka szaka [8e86ba] point to the detailed Changelog and give help h...
 Makefile.am 2008-09-06 jpandre jpandre [67618b] Updated files needed to make a build
 NEWS 2006-10-30 szaka szaka [e291a7] add AUTHORS, ChangeLog, and NEWS files
 README 2010-12-14 Jean-Pierre André Jean-Pierre André [58be44] Updated the README file (tests without installing)
 autogen.sh 2008-09-06 jpandre jpandre [67618b] Updated files needed to make a build
 configure.ac 2010-10-26 Jean-Pierre André Jean-Pierre André [351aec] Enabled renaming of system extended attributes

Read Me

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 any
more.

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.

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


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