|
|
发表于 2006-11-17 12:01:28
|
显示全部楼层
NTFS-3G Read/Write Driver
Updated: November 17, 2006
http://www.ntfs-3g.org/
The NTFS-3G driver is an open source; freely available NTFS driver for Linux with read and write support. It provides safe and fast handling of the Windows XP, Windows Server 2003 and Windows 2000 file systems. Most POSIX file system operations are supported, with the notable exception of file ownership and access right changes.
The purpose of the project is to develop, continuously quality test and support a trustable, feature rich 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 a hybrid, kernel/user space file system driver approach. Performance, reliability and feature richness per invested effort are being examined.
The driver currently is in BETA status, which means that no data corruption or loss has been reported during ordinary driver use, nor found in our extensive quality testing before release of the latest version. However, we are aware of certain usability issues and driver limitations which are all documented and planned to be resolved in the future.
Download
The latest NTFS-3G driver is ntfs-3g-0.20061115-BETA.tgz. The software changes can be found on the Release History page. Improved and tested drivers are regularly released. You can subscribe here for new release notifications.
There were over 73,000 downloads so far but many distributions include, or have easy-to-install, tested binary packages available as well: Ubuntu, Gentoo, Kanotix, Debian, Frugalware, openSUSE, Mandriva, Fedora, Ark Linux, PCLinuxOS, grml, PLD Linux, Arch Linux, Puppy LiveCD, Slax, Musix, Slackware, Tilix, GParted LiveCD, Trinity Rescue Kit, Vector Linux, ALT Linux, PUD Linux, Kurumin, Pardus Linux, B2D Linux, Insert, AliXe, Helix, Austrumi, ASPLinux, Dreamlinux and Parsix. You may follow the previous links for distribution specific installation instructions.
The development source code is also available via CVS and Mercurial.
Installation
Make sure that the basic Linux development tools and the full FUSE package is already installed correctly on the computer. Please note, that FUSE version 2.6.0 is required to guarantee full data safety. Then type:
./configure
make
make install # or 'sudo make install' if you aren't root
Usage
If there was no error during installation then the NTFS volume can be mounted in read-write mode for everybody as follows. Unmount the volume if it had already been mounted, replace /dev/hda1 and /mnt/windows, if needed.
ntfs-3g /dev/hda1 /mnt/windows
You may also need to set the 'locale' option to make all file names with national characters visible. Replace the below hu_HU.utf8 with the appropriate setting.
ntfs-3g /dev/hda1 /mnt/windows -o locale=hu_HU.utf8
Please see the ntfs-3g manual page for more options and examples. You can also make NTFS to be mounted during boot by adding the following line to the end of the /etc/fstab file:
/dev/hda1 /mnt/windows ntfs-3g defaults 0 0
Page is maintained by project leader, Szabolcs Szakacsits, szaka@sienet.hu.
http://www.ntfs-3g.org/support.html#questions
Why can't I mount NTFS on Fedora?
The mount fails due to a bug in SELinux.
Workaround: Set SELinux to Permissive Mode, for example in GNOME under System > Admin > Security Level and Firewall > SELinux Tab, or try this command:
audit2allow -M local < /var/log/audit/audit.log
or this one:
audit2allow -M local < /var/log/messages
The above commands may output some warning and error messages which usually are irrelevant and can be safely ignored.
Status: Not a driver fault. Red Hat is working on the SELinux fix. |
|