NTFS-3G Safe Read/Write NTFS Driver
 
 
 
 
Go to file
szaka 3edc27d598 add COPYING file explicitely because autogen.sh doesn't create it automatic
since COPYING.LIB was added (Tom "spot" Callaway, Szabolcs Szakacsits)
2008-03-24 21:08:31 +00:00
include ntfs_mbstoucs(): remove unused and broken outs_len 2008-03-08 19:18:20 +00:00
libfuse-lite fusermount(): fix a mount and unmount time mountpoint size memory leak 2008-03-23 14:33:26 +00:00
libntfs-3g rmdir returns ENOTEMPTY instead of EEXIST because glib/nautilus can't handle 2008-03-09 13:08:17 +00:00
src mount_fuse(): remove obsolete workaround to be able to find fusermount. 2008-03-09 13:29:29 +00:00
AUTHORS update AUTHORS and CREDITS 2008-01-20 16:59:14 +00:00
COPYING add COPYING file explicitely because autogen.sh doesn't create it automatic 2008-03-24 21:08:31 +00:00
COPYING.LIB add missing COPYING.LIB, reported by Bernhard Kaindl 2008-03-08 20:29:20 +00:00
CREDITS update AUTHORS and CREDITS 2008-01-20 16:59:14 +00:00
ChangeLog point to the detailed Changelog and give help how it can be generated 2007-09-01 11:39:53 +00:00
Makefile.am New: built-in FUSE support by using a 50% stripped down, internal 2007-12-06 20:44:10 +00:00
NEWS add AUTHORS, ChangeLog, and NEWS files 2006-10-30 22:36:47 +00:00
README README update 2008-01-20 14:26:51 +00:00
autogen.sh New: built-in FUSE support by using a 50% stripped down, internal 2007-12-06 20:44:10 +00:00
configure.ac release 1.2310 2008-03-09 13:32:07 +00:00

README

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

The NTFS-3G driver is an open source, freely available read/write NTFS driver 
for Linux, FreeBSD, Mac OS X, NetBSD, and Haiku. It provides safe and fast 
handling of the Windows XP, Windows Server 2003, Windows 2000 and Windows 
Vista file systems. Most POSIX file system operations are supported, and 
full file ownership and permission support is also coming along fast.

The purpose of the project is to develop, continuously quality test 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.

The driver is in STABLE status. The test methods, the test suites used and
testimonials can be found on

	http://www.ntfs-3g.org/quality.html

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.ntfs-3g.org


QUICK INSTALLATION
==================

Linux: Make sure you have the basic development tools and the kernel includes 
the FUSE kernel module. Then 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 anymore.

Non-Linux: Please see the NTFS-3G web page 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 (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

If your Operating System vendor didn't setup your language specific settings 
then you may also need to set the 'locale' mount option to make all filenames 
with national characters visible. Replace the below en_US.UTF-8 with the 
appropriate setting. You can find more information about his topic at
http://ntfs-3g.org/support.html#locale

	mount -t ntfs-3g /dev/hda1 /mnt/windows -o locale=en_US.UTF-8

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