Difference between revisions of "Ntfs-3g"
From CBLFS
Jump to navigationJump to searchm |
m |
||
Line 7: | Line 7: | ||
---- | ---- | ||
− | {{Package-Introduction|NTFS-3G is NTFS | + | {{Package-Introduction|The NTFS-3G driver is an open source, freely available read/write NTFS driver for Linux. 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, with the exception of full file ownership and access right support.|http://www.ntfs-3g.org/}} |
== Dependencies == | == Dependencies == |
Revision as of 23:21, 11 July 2007
Download Source: | http://www.ntfs-3g.org/ntfs-3g-2014.2.15.tgz |
---|
Contents
Introduction to Ntfs-3g
The NTFS-3G driver is an open source, freely available read/write NTFS driver for Linux. 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, with the exception of full file ownership and access right support.
Project Homepage: http://www.ntfs-3g.org/
Dependencies
Required
Non-Multilib
Compile the package:
./configure --prefix=/usr && make
Install the package
make install
Multilib
32Bit
Compile the package:
sed -i "/PKG_CONFIG_PATH=/d" configure && CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ ./configure --prefix=/usr --libdir=/usr/lib && make
Install the package
make install
N32
Compile the package:
sed -i "/PKG_CONFIG_PATH=/d" configure && CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ ./configure --prefix=/usr --libdir=/usr/lib32 && make
Install the package
make install
64Bit
Compile the package:
sed -i "/PKG_CONFIG_PATH=/d" configure && CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ ./configure --prefix=/usr --libdir=/usr/lib64 && make
Install the package
make install