当前位置: 技术问答>linux和unix
mount的时候出现如下错误是因为什么
来源: 互联网 发布时间:2015-01-26
本文导语: 挂接IDE2的从硬盘,也是linux系统 mount -a /dev/hdd3 /mnt/a 出现如下错误 mount:error while guessing filesystem type mount:you must specify the filesystem type 于是我指定类型 mount -t ext3 /dev/hdd3 /mnt/a 出现如下错误 mount:wrong f...
挂接IDE2的从硬盘,也是linux系统
mount -a /dev/hdd3 /mnt/a
出现如下错误
mount:error while guessing filesystem type
mount:you must specify the filesystem type
于是我指定类型
mount -t ext3 /dev/hdd3 /mnt/a
出现如下错误
mount:wrong fs type, bad option,bad superblock on /dev/hdd3,
or too many mounted file systems
(could this be th IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
这是怎么回事?请大哥们多多帮忙 谢谢!
mount -a /dev/hdd3 /mnt/a
出现如下错误
mount:error while guessing filesystem type
mount:you must specify the filesystem type
于是我指定类型
mount -t ext3 /dev/hdd3 /mnt/a
出现如下错误
mount:wrong fs type, bad option,bad superblock on /dev/hdd3,
or too many mounted file systems
(could this be th IDE device where you in fact use
ide-scsi so that sr0 or sda or so is needed?)
这是怎么回事?请大哥们多多帮忙 谢谢!
|
先用sfdisk -l (小写的L)查看一下所有可用的分区,是不是就是/dev/hdd3?
如果有hdd3,还不能mount那就是fs type的问题。
如果有hdd3,还不能mount那就是fs type的问题。
|
先用fdisk -l /dev/hd? 查看所有分区类型,确认有/dev/hdd3 和/dev/hdd3的文件系统类型。
如果是linux的et3可以用:mount -t et3 /dev/hdd3 /mnt/a
如果是windows的fat32 :mount -t vfat /dev/hdd3 /mnt/a
如果是windows的ntfs :可能你的kernel不支持它,需要重新编译
如果是linux的et3可以用:mount -t et3 /dev/hdd3 /mnt/a
如果是windows的fat32 :mount -t vfat /dev/hdd3 /mnt/a
如果是windows的ntfs :可能你的kernel不支持它,需要重新编译
|
mount -a /dev/hda3 /mnt/a
硬盘的表示是hda不是hdd
硬盘的表示是hda不是hdd