Ntfs-3g: Difference between revisions
From CBLFS
Jump to navigationJump to search
New page: {| style="text-align: left; background-color: AliceBlue;" |- !Download Source: | http://www.ntfs-3g.org/ntfs-3g-1.0.tgz |} ---- == Introduction to NTFS-3G == NTFS-3G is NTFS Read/Write ... |
No edit summary |
||
| Line 32: | Line 32: | ||
=== 32Bit === | === 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 === | === 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 === | === 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 | |||
Revision as of 00:00, 25 February 2007
| Download Source: | http://www.ntfs-3g.org/ntfs-3g-1.0.tgz |
|---|
Introduction to NTFS-3G
NTFS-3G is NTFS Read/Write Driver
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