問題:
# mount –t ntfs /dev/sdc1 /mnt/usb
mount: unknown filesystem type ‘ntfs’
這是因爲 上沒法識別NTFS格式的分區。linux
解決辦法:
經過使用 ntfs-3g 來解決。
打開ntfs-3g的下載點http://www.tuxera.com/community/ntfs-3g-download/ ,將最新穩定ntfs-3g-2011.1.13下載到linux,
執行如下命令安裝:
1) 編譯安裝 ntfs-3g:
# tar zxvf ntfs-3g-2011.1.13.tgz
# cd ntfs-3g-2011.1.15
#./configure
#make
#make install
mount -t ntfs-3g /dev/sdc1 /mnt/usbit