|
有关使用移动硬盘ntfs分区的问题
我的usb移动硬盘有四个区:前两个是vfat型(第一个在windows下是隐藏分区),后两个是ntfs的.装好kernel-ntfs包后
前两个分区可以用:
mount -t vfat -o iocharset=cp936 /dev/sda1 /mnt/usb0
mount -t vfat -o iocharset=cp936 /dev/sda2 /mnt/usb1
挂接;
但后两个分区我用:
mount -t ntfs -o iocharset=cp936 /dev/sda3 /mnt/usb2
mount -t ntfs -o iocharset=cp936 /dev/sda4 /mnt/usb3
都提示分区格式错误,如下:
mount: wrong fs type, bad option, bad superblock on /dev/sda3,
or too many mounted file systems
(aren't you trying to mount an extended partition,
instead of some logical partition inside?) |
|