-3

我知道我在某些地方弄错了这个标题......我现在只是超级困惑。

我刚刚使用华硕 BIOS 设置获得了 RAID 5“设置”(不使用那个英特尔的东西,我忘记了它的名称..).. 我启动了 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.

所以然后我尝试了“dmesg | tail”

 [ 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 if=/dev/zero bs=512 count=2000”,但什么也没做。这几天我一直在努力解决这个问题,我真的可以使用一些帮助,谢谢!

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

补充: 而且,当我按 Control+F 进入 Raid 设置时,它说它是“功能性的”

4

1 回答 1

-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. 您缺少 dd 参数 =/dev/yourdevice

您可以使用cat /proc/mdstat查看所有工作的 MDRAID 设备

于 2017-06-19T20:50:43.187 回答