我在 sda 上使用 Slackware 14.2(内核为 4.4.14-smp),并尝试使用附加 sdb 创建 RAID 1。我正在使用 VM VirtualBox。
首先,我清理了 sdb:
dd if=/dev/zero of=/dev/sdb bs=8M count=1000
并将 sda 的分区复制到 sdb:
sfdisk -d /dev/sda | sfdisk /dev/sdb
接下来,我将分区类型更改为“Linux raid autodetect”:
Device Boot Start End Sectors Size Id Type
/dev/sda1 2048 8390655 8388608 4G 82 Linux swap
/dev/sda2 * 8390656 113248255 104857600 50G 83 Linux
/dev/sda3 113248256 209715199 96466944 46G 5 Extended
/dev/sda5 113250304 144707583 31457280 15G 83 Linux
/dev/sda6 144709632 176166911 31457280 15G 83 Linux
/dev/sda7 176168960 209715199 33546240 16G 83 Linux
和
Device Boot Start End Sectors Size Id Type
/dev/sdb1 2048 8390655 8388608 4G fd Linux raid autodetect
/dev/sdb2 * 8390656 113248255 104857600 50G fd Linux raid autodetect
/dev/sdb3 113248256 209715199 96466944 46G 5 Extended
/dev/sdb5 113250304 144707583 31457280 15G fd Linux raid autodetect
/dev/sdb6 144709632 176166911 31457280 15G fd Linux raid autodetect
/dev/sdb7 176168960 209715199 33546240 16G fd Linux raid autodetect
对于每个分区(md1,md2,md5,md6,md7),我执行以下操作:
mdadm --create /dev/md1 --level=1 --metadata=0.90 --raid-disk=2 missing /dev/sdb1
并在创建的阵列上创建文件系统:
mkswap /dev/md1
mkreiserfs -fq /dev/md2
mkreiserfs -fq /dev/md5
mkreiserfs -fq /dev/md6
mkreiserfs -fq /dev/md7
保存了 raid 配置:
mdadm --examine --scan >> /etc/mdadm.conf
接下来,编辑 /etc/fstab 和 /etc/mtab,将 sdaX->mdX 替换,并准备初始 ramdisk:
mkinitrd -c -k 4.4.14-smp -f reiserfs -r /dev/md2 -m reiserfs:dm-raid -u -o /boot/initrd_raid.gz
配置grub:
cp /etc/grub.d/40_custom /etc/grub.d/09_swraid1_setup
#!/bin/sh
exec tail -n +3 $0
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
menuentry 'Slackware-14.2 GNU/Linux' --class slackware-14.2 --class gnu-linux --class os {
insmod mdraid09
insmod mdraid1x
insmod gzio
insmod part_msdos
insmod reiserfs
set root='md2,msdos2'
echo 'Loading Linux 4.4.14-smp ...'
linux /boot/vmlinuz-huge-smp-4.4.14-smp root=/dev/md2 ro
echo 'Loading inital ramdisk ...'
initrd /boot/initrd_raid.gz
}
我已通过取消注释来编辑 /etc/default/grub:
GRUB_TERMINAL=console
GRUB_DISABLE_LINUX_UUID=true
最后:
grub-mkconfig -o /boot/grub/grub.cfg
并且数据从 sda 复制到 sdb(cp -dpRx / /mnt/md2
等等)。
GRUB 已安装:
grub-install /dev/sda/
grub-install /dev/sdb/
加载时的输出:
Loading Linux 4.4.14-smp ...
error: disk 'md0,msdos2' not found.
Loading inital ramdisk ...
error: you need to load the kernel first.
问题是:我应该向 initrd 添加哪些模块以及我应该如何配置 grub?
更新: /etc/grub.d/09_swraid1_setup 已被编辑:
...
set root='md/md2'
...
initrd /boot/initrd.gz
添加了 /etc/mkinitrd.conf 来创建 initrd 映像:
# mkinitrd.conf.sample
# See "man mkinitrd.conf" for details on the syntax of this file
#
#SOURCE_TREE="/boot/initrd-tree"
#CLEAR_TREE="0"
OUTPUT_IMAGE="/boot/initrd.gz"
KERNEL_VERSION="$(uname -r)"
#KEYMAP="us"
MODULE_LIST="reiserfs"
#LUKSDEV="/dev/sda2"
#LUKSKEY="LABEL=TRAVELSTICK:/keys/alienbob.luks"
ROOTDEV="/dev/md2"
ROOTFS="reiserfs"
RESUMEDEV="/dev/md1"
RAID="1"
#LVM="0"
UDEV="1"
#MODCONF="0"
WAIT="5"
并使用以下命令创建 initrd 映像:
mkinitrd -F
更新 grub (grub-mkconfig -o /boot/grub/grub.cfg
和grub-install /dev/sda
, grub-install /dev/sdb
)后,系统成功重启。之后,sda 的分区类型已更改为 Linux raid 自动检测并将分区添加到阵列:
mdadm --add /dev/md1 /dev/sda1
mdadm --add /dev/md2 /dev/sda2
mdadm --add /dev/md5 /dev/sda5
mdadm --add /dev/md6 /dev/sda6
mdadm --add /dev/md7 /dev/sda7
现在,使用两个磁盘的系统启动成功,但是当我移除其中一个磁盘并尝试启动时,出现以下情况:
/boot/initrd.gz: Loading kernel modules from initrd image:
insmod /lib/modules/4.4.14-smp/kernel/fs/reiserfs/reiserfs.ko
modprobe: ERROR: could not insert 'reiserfs': Device or resource busy
Trying to resume from /dev/md1
[ 12.529675] PM: Starting manual resume from disk
[ 12.552222] REISERFS warning (device md2): sh-2006 read_super_block: bread failed (dev md2, block 2, size 4096)
[ 12.557432] REISERFS warning (device md2): sh-2006 read_super_block: bread failed (dev md2, block 16, size 4096)
mount: mounting /dev/md2 on /mnt failed: Invalid argument
ERROR: No /sbin/init found on rootdev (or not mounted). Trouble ahead.
现在,问题是:如何在没有其中一个磁盘的情况下启动系统?