首先需要有ntfs-3g,没有的话sudo apt-get install ntfs-3g 挂载硬盘: chen@ilaptop:/$ sudo mount -o rw,remount /dev/sdb1 报错: Remounting is not supported at present. You have to umount volume and then mount it once again. 再挂载硬盘: chen@ilaptop:/$ sudo mount /dev/sdb1 又报错…
直接在CentOS上挂载NTFS,报错支持ntfs格式: mount: unknown filesystem type 'ntfs' 原因:无法使用Kernel NTFS Module挂载Windows下的NTFS分区 解决:使用ntfs-3g来解决了 下载地址:http://www.tuxera.com/community/ntfs-3g-download/ 安装: ./configure make make install # or 'sudo make install' if you ar…