linux 掛載ntfs usb 出現mount: unknown filesystem type 'ntfs'
Posted on 2013-05-17 18:06 瘋狂 閱讀(12665) 評論(0) 編輯 收藏 所屬分類: unix問題:
# mount –t ntfs /dev/sdc1 /mnt/usb
mount: unknown filesystem type ‘ntfs’
這是由于 上無法識別NTFS格式的分區。
解決辦法:
通過使用 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/usb
完~