• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..02-May-201732

aclocal.m4H A D17-Jan-2011262.5 KiB

AUTHORSH A D17-Jan-2011315

autogen.shH A D17-Jan-2011866

ChangeLogH A D17-Jan-2011296

compileH A D17-Jan-20113.6 KiB

config.guessH A D17-Jan-201142.6 KiB

config.hH A D17-Jan-20119.4 KiB

config.h.inH A D17-Jan-20118.9 KiB

config.statusH A D17-Jan-201138 KiB

config.subH A D17-Jan-201131.4 KiB

configureH A D17-Jan-2011768.2 KiB

configure.acH A D17-Jan-201111.2 KiB

COPYINGH A D17-Jan-201117.6 KiB

COPYING.LIBH A D17-Jan-201124.7 KiB

CREDITSH A D17-Jan-2011770

depcompH A D17-Jan-201115.6 KiB

include/H02-May-20177

INSTALLH A D17-Jan-20119.3 KiB

install-shH A D17-Jan-20119 KiB

libfuse-lite/H02-May-201720

libntfs-3g/H02-May-201734

libtoolH A D17-Jan-2011223.8 KiB

ltmain.shH A D17-Jan-2011194.5 KiB

m4/H02-May-20173

MakefileH A D17-Jan-201123.3 KiB

Makefile.amH A D17-Jan-2011679

Makefile.inH A D17-Jan-201121.9 KiB

missingH A D17-Jan-201110.8 KiB

NEWSH A D17-Jan-2011115

READMEH A D17-Jan-20112 KiB

src/H02-May-201712

stamp-h1H A D17-Jan-201123

README

1
2INTRODUCTION
3============
4
5The NTFS-3G driver is an open source, freely available read/write NTFS driver 
6for Linux, FreeBSD, Mac OS X, NetBSD, Solaris and Haiku. It provides safe and 
7fast handling of the Windows XP, Windows Server 2003, Windows 2000, Windows 
8Vista, and Windows Server 2008 file systems. 
9
10The purpose of the project is to develop, continuously quality test and
11support a trustable, featureful and high performance solution for hardware
12platforms and operating systems whose users need to reliably interoperate
13with NTFS. Besides this practical goal, the project also aims to explore
14the limits of the hybrid, kernel/user space filesystem driver approach,
15performance, reliability and feature richness per invested effort wise.
16
17The driver is in STABLE status. The test methods, the test suites used
18can be found at
19
20	http://ntfs-3g.org/quality.html
21
22News, support answers, problem submission instructions, support and discussion 
23forums, performance numbers and other information are available on the project 
24web site at
25
26	http://ntfs-3g.org
27
28
29QUICK INSTALLATION
30==================
31
32Linux: Make sure you have the basic development tools and the kernel includes 
33the FUSE kernel module. Then type:  
34
35	./configure
36	make
37	make install      # or 'sudo make install' if you aren't root.
38
39Please note that NTFS-3G doesn't require the FUSE user space package anymore.
40
41Non-Linux: Please see the NTFS-3G web page for OS specific installation and 
42source packages.
43
44
45USAGE
46=====
47
48If there was no error during installation then the NTFS volume can be
49read-write mounted for everybody the following way as the root user 
50(unmount the volume if it was already mounted, and replace /dev/sda1 
51and /mnt/windows, if needed):
52
53	mount -t ntfs-3g /dev/sda1 /mnt/windows
54or
55	ntfs-3g /dev/sda1 /mnt/windows
56
57Please see the ntfs-3g manual page for more options and examples.
58
59You can also make NTFS to be mounted during boot by putting the below 
60line at the __END__ of the /etc/fstab file:
61
62	/dev/sda1 /mnt/windows ntfs-3g defaults 0 0
63
64