Posted on 2013-05-17 18:06
瘋狂 閱讀(12668)
評(píng)論(0) 編輯 收藏 所屬分類:
unix
問題:
# mount –t ntfs /dev/sdc1 /mnt/usb
mount: unknown filesystem type ‘ntfs’
這是由于 上無法識(shí)別NTFS格式的分區(qū)。
解決辦法:
通過使用 ntfs-3g 來解決。
打開ntfs-3g的下載點(diǎn)http://www.tuxera.com/community/ntfs-3g-download/ ,將最新穩(wěn)定ntfs-3g-2011.1.13下載到linux,
執(zhí)行以下命令安裝:
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
完~