created : 2010-02-28 updated : 2010-02-28
ntfs-3gProject Homepage :http://www.ntfs-3g.org/
Get Source :
wget http://www.ntfs-3g.org/ntfs-3g-2009.4.4.tgz Unpack source :
tar xvf ntfs-3g-2009.4.4.tgz cd ntfs-3g-2009.4.4 Build and install : time { ./configure --prefix=/usr --libdir=/usr/lib && make && make install ; } 2>&1 | tee log.txt real 4m7.076s user 0m32.878s sys 3m11.104s Sample usage :
Mount a NTFS partition with read-write access. (Warning : don't copy and paste, make sure you understand the syntax)
mount -t ntfs-3g -o umask=0022 /dev/sdb1 /tmp/b1 End |
BLFS >