summaryrefslogtreecommitdiff
path: root/README (plain)
blob: 12328b3ce2cfb2e27bbc8e8e81c396e12cc72b3e
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, OpenSolaris, QNX and Haiku. It provides
7safe and fast handling of the Windows XP, Windows Server 2003, Windows 2000,
8Windows Vista, Windows Server 2008 and Windows 7 file systems.
9
10The purpose of the project is to develop, quality assurance and support a
11trustable, featureful and high performance solution for hardware platforms
12and operating systems whose users need to reliably interoperate with NTFS.
13Besides this practical goal, the project also aims to explore the limits
14of the hybrid, kernel/user space filesystem driver approach, performance,
15reliability and feature richness per invested effort wise.
16
17Besides the common file system features, NTFS-3G has support for file
18ownership and permissions, POSIX ACLs, junction points, extended attributes
19and creating compressed files. Parameter files in the directory .NTFS-3G may
20be required to enable them, please get the instructions from
21
22 http://www.tuxera.com/community/ntfs-3g-advanced/
23
24News, support answers, problem submission instructions, support and discussion
25forums, performance numbers and other information are available on the project
26web site at
27
28 http://www.tuxera.com/community/
29
30
31QUICK INSTALLATION
32==================
33
34Linux: Make sure you have the basic development tools and the kernel includes
35the FUSE kernel module. Then unpack the source tarball and type:
36
37 ./configure
38 make
39 make install # or 'sudo make install' if you aren't root.
40
41Please note that NTFS-3G doesn't require the FUSE user space package.
42
43Non-Linux: Please see
44
45 http://www.tuxera.com/community/ntfs-3g-download/
46
47for OS specific installation and source packages.
48
49
50USAGE
51=====
52
53If there was no error during installation then the NTFS volume can be
54read-write mounted for everybody the following way as the root user
55(unmount the volume if it was already mounted, and replace /dev/sda1
56and /mnt/windows, if needed):
57
58 mount -t ntfs-3g /dev/sda1 /mnt/windows
59or
60 ntfs-3g /dev/sda1 /mnt/windows
61
62Please see the ntfs-3g manual page for more options and examples.
63
64You can also make NTFS to be mounted during boot by putting the below
65line at the END(!) of the /etc/fstab file:
66
67 /dev/sda1 /mnt/windows ntfs-3g defaults 0 0
68
69