kernel2.6x据说可以编译内核来实现对NTFS的写,没有测试过...
我的方法没什么新意,是参考一些网上的文章,自己也测试了一下.
先到http://www.jankratochvil.net/project/captive/ 下载一个
captive-static-1.1.7-0.i386.rpm
1.安装 rpm -ivh captive-static-1.1.7-0.i386.rpm
2.装载ntfs分区:
mount -t captive-ntfs /dev/ntfs分区名 /mount_path
如果要让某个用户对NTFS分区可写的话,可以这样mount
mount -t captive-ntfs -o uid=500,gid=500 /dev/ntfs分区 /mount_paht #500为用户的实际uid和gid.
这样就可以对ntfs分区可读写了.
另:据说linux目前对NTFS写的支持还在测试阶段,可以会对数据有损害(如果你不幸运的话),嘻嘻,我的没事.

