|
debian:/mnt/D# fdisk -l
Disk /dev/hda: 80.0 GB, 80026361856 bytes
255 heads, 63 sectors/track, 9729 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x7a695750
Device Boot Start End Blocks Id System
/dev/hda1 1 486 3903763+ 83 Linux
/dev/hda2 487 9729 74244397+ f W95 Ext'd (LBA)
/dev/hda5 5100 9729 37190443+ 7 HPFS/NTFS
/dev/hda6 4742 5099 2875572 82 Linux swap / Solaris
/dev/hda7 487 4741 34178224+ 83 Linux
------------------------------------
vim /etc/fstab
# /etc/fstab: static file system information.
#
# <file system> <mount point> <type> <options> <dump> <pass>
proc /proc proc defaults 0 0
/dev/hda7 / ext3 errors=remount-ro 0 1
/dev/hda1 /boot ext3 defaults 0 2
/dev/hda6 none swap sw 0 0
/dev/hdb /media/cdrom0 udf,iso9660 user,noauto 0 0
/dev/hda5 /mnt/D ntfs rw,user,utf8,noauto,umask=0 0 0(NTFS挂载失败)
/dev/sda1 /mnt/E ntfs rw,user,utf8,noauto,umask=0 0 0 (这个为移动硬盘,挂载成功)
----------------------------
debian:/mnt/D# ntfs-3g /dev/hda5 /mnt/D
NTFS signature is missing.
Failed to mount '/dev/hda5': 无效的参数
The device '/dev/hda5' doesn't have a valid NTFS.
Maybe you selected the wrong device? Or the whole disk instead of a
partition (e.g. /dev/hda, not /dev/hda1)? Or the other way around?
问题:The device '/dev/hda5' doesn't have a valid NTFS.
为何会这样呢? fdisk查看明明是NTFS文件哦。
文件被破坏了? 里边还有很多资料呢,,,
哪位大虾帮忙分析下。 |
|