LinuxServer RAIDについて その9
前回までは不良ディスクを削除して、新たにディスクを追加することを行った。
今回はスペアディスクを追加してみる。
RAIDアレイにスペアディスクを追加したり削除したりしてみる
パーティションの作成
今回は以下の3つのデバイスにパーティションを1つずつ作成してみる
/dev/xvdb
/dev/xvdc
/dev/xvdd
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | 1つ目 [root@gestos01 ~] # fdisk /dev/xvdb Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-130, default 1): Using default value 1 Last cylinder or +size or +sizeM or +sizeK (1-130, default 130): Using default value 130 Command (m for help): w The partition table has been altered! Calling ioctl() to re- read partition table. Syncing disks. 2つ目 [root@gestos01 ~] # fdisk /dev/xvdc Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-130, default 1): Using default value 1 Last cylinder or +size or +sizeM or +sizeK (1-130, default 130): Using default value 130 Command (m for help): w The partition table has been altered! Calling ioctl() to re- read partition table. Syncing disks. 3つ目 [root@gestos01 ~] # fdisk /dev/xvdd Command (m for help): n Command action e extended p primary partition (1-4) p Partition number (1-4): 1 First cylinder (1-130, default 1): Using default value 1 Last cylinder or +size or +sizeM or +sizeK (1-130, default 130): Using default value 130 Command (m for help): w The partition table has been altered! Calling ioctl() to re- read partition table. Syncing disks. |