我在 RAID 0 中设置了 2 个驱动器(/dev/sda
在/dev/sdb
Ubuntu 中)。当我运行 15.04 时,我安装了 Ubuntu,并且出现了一个设备/dev/mapper
,即 raid 驱动器。安装 15.10 后,唯一的设备/dev/mapper
是名为“control”的设备。Windows 仍然可以看到 raid 分区,所以我知道 raid 驱动器可以正常工作。
我怎样才能让 15.10 检测到 raid 驱动器?
PS. 当我启动 gparted 时,它显示“不能有磁盘外的分区”,不确定这是否相关。
答案1
Neil 的解决方案sudo mdadm --assemble --scan
有效,但是当我重新启动时它却不再起作用。
解决方案是创建一个/etc/init.d/mountraid
包含以下内容的文件
#!/bin/sh
# scan for raid partitions
sudo mdadm --assemble --scan
# mount the drive here, using either mount or ntfs-3g
然后运行sudo chmod 755 /etc/init.d/mountraid
以允许其执行。
最后,sudo update-rc.d mountraid defaults
每次启动时运行它。