[b]问题:[/b]
# [b][color=blue]mount –t ntfs /dev/sdb1 /mnt/usb[/color][/b]
mount: unknown filesystem type ‘ntfs’
这是由于CentOS release 5.3(Final)上无法识别NTFS格式的分区。
[b]解决办法:[/b]
通过使用 ntfs-3g 来解决。
打开ntfs-3g的下载点[url]http://www.tuxera.com/community/ntfs-3g-download/[/url] ,将最新稳定(当前最新版本为ntfs-3g-2010.8.8.tgz)下载到CentOS,执行以下命令安装:
1) 编译安装 ntfs-3g:
# [color=blue][b]./configure[/b][/color]
# [b][color=blue]make[/color][/b]
# [color=blue][b]make install[/b][/color] (或 sudo make install)
2) 查看USB设备点
# [color=blue][b]fdisk -l[/b][/color]
Disk /dev/sda: 154.7 GB, 154750418432 bytes
255 heads, 63 sectors/track, 18814 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 18814 151019032+ 8e Linux LVM
Disk /dev/sdb: 500.1 GB, 500107861504 bytes
255 heads, 62 sectors/track, 61781 cylinders
Units = cylinders of 15810 * 512 = 8094720 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 61782 488384000+ 7 HPFS/NTFS
3) 挂载NTFS分区
# [b][color=blue]mount –t ntfs-3g /dev/sdb1 /mnt/usb[/color][/b]
摘自:[url]http://www.siutung.org/post/455/[/url](天空极速)
# [b][color=blue]mount –t ntfs /dev/sdb1 /mnt/usb[/color][/b]
mount: unknown filesystem type ‘ntfs’
这是由于CentOS release 5.3(Final)上无法识别NTFS格式的分区。
[b]解决办法:[/b]
通过使用 ntfs-3g 来解决。
打开ntfs-3g的下载点[url]http://www.tuxera.com/community/ntfs-3g-download/[/url] ,将最新稳定(当前最新版本为ntfs-3g-2010.8.8.tgz)下载到CentOS,执行以下命令安装:
1) 编译安装 ntfs-3g:
# [color=blue][b]./configure[/b][/color]
# [b][color=blue]make[/color][/b]
# [color=blue][b]make install[/b][/color] (或 sudo make install)
2) 查看USB设备点
# [color=blue][b]fdisk -l[/b][/color]
Disk /dev/sda: 154.7 GB, 154750418432 bytes
255 heads, 63 sectors/track, 18814 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Device Boot Start End Blocks Id System
/dev/sda1 * 1 13 104391 83 Linux
/dev/sda2 14 18814 151019032+ 8e Linux LVM
Disk /dev/sdb: 500.1 GB, 500107861504 bytes
255 heads, 62 sectors/track, 61781 cylinders
Units = cylinders of 15810 * 512 = 8094720 bytes
Device Boot Start End Blocks Id System
/dev/sdb1 1 61782 488384000+ 7 HPFS/NTFS
3) 挂载NTFS分区
# [b][color=blue]mount –t ntfs-3g /dev/sdb1 /mnt/usb[/color][/b]
摘自:[url]http://www.siutung.org/post/455/[/url](天空极速)