RAID5没有安装(或类似的......)

时间:2017-06-19 20:10:55

标签: ubuntu raid

我知道我在某些方面错了这个标题......我现在只是非常困惑。

我刚刚获得了RAID 5"设置"使用华硕BIOS设置(不使用那个英特尔的东西,我忘了它的名字..)..我启动了Ubuntu并看到它显示了Raid阵列,但它说没有存储在其中(即使我放了5个驱动器在)。我试过跑:

sudo mount /dev/md127

但我收到此错误消息:

mount: wrong fs type, bad option, bad superblock on /dev/md127,
   missing codepage or helper program, or other error

   In some cases useful info is found in syslog - try
   dmesg | tail or so.

然后我尝试了#34; dmesg |尾"

 [ 5923.994233] EXT4-fs (md127): unable to read superblock
[ 5923.994305] EXT4-fs (md127): unable to read superblock
[ 5923.994345] EXT4-fs (md127): unable to read superblock
[ 5923.994384] SQUASHFS error: squashfs_read_data failed to read block 0x0
[ 5923.994386] squashfs: SQUASHFS error: unable to read squashfs_super_block
[ 6196.524012] md: md127 stopped.
[ 6302.769148] Btrfs loaded, crc32c=crc32c-intel
[ 7243.815780] EXT4-fs (md127): unable to read superblock
[ 7407.438154] EXT4-fs (md127): unable to read superblock
[ 7658.097735] EXT4-fs (md127): unable to read superblock

我尝试了很多不同的东西,当我尝试用以下内容对驱动器进行分区时:" sudo fdisk -l / dev / md127",我得到:

fdisk: cannot open /dev/md127: No such file or directory

我还尝试过运行" dd如果= / dev / zero bs = 512 count = 2000",但这没有做任何事情。我已经试图解决这个问题几天了,我真的可以使用一些帮助,谢谢!

我目前正在运行Ubuntu 17.04 w / 12gig DDR3,如果这很重要的话。每个驱动器也是1tb。

此外: 并且,当我按下Control + F进入Raid设置时,它会说它"功能"

1 个答案:

答案 0 :(得分:-1)

你把很多东西混在一起。

  1. 您使用bios raid会导致更多问题而不是解决。使用MDRAID
  2. 你没有工作区块设备(只有DMRAID支持bios raid)
  3. 即使您有一个块设备,也必须对其进行格式化(或使用MBR / GPT或LVM进行拆分)
  4. 使用dd if=/dev/zero bs=512 count=2000 of=/dev/yourdevice DESTROYS 文件系统的重要部分
  5. 您缺少= / dev / yourdevice
  6. 的dd参数

    您可以使用cat /proc/mdstat查看所有正在运行的MDRAID设备