在 raid-1 阵列下添加新分区

在 raid-1 阵列下添加新分区

我有一个较小的 /tmp 分区,我想创建比当前分区大 10 GB 的新分区,我在 raid-1 阵列上有两个硬盘

# mdadm --query --detail /dev/md0
/dev/md0:
        Version : 0.90
  Creation Time : Sat May 26 19:45:25 2012
     Raid Level : raid1
     Array Size : 33553344 (32.00 GiB 34.36 GB)
  Used Dev Size : 33553344 (32.00 GiB 34.36 GB)
   Raid Devices : 2
  Total Devices : 2
Preferred Minor : 0
    Persistence : Superblock is persistent

    Update Time : Tue Nov 13 05:09:09 2012
          State : clean
 Active Devices : 2
Working Devices : 2
 Failed Devices : 0
  Spare Devices : 0

           UUID : 95977b4c:6be67738:776c2c25:004bd7b2
         Events : 0.400

    Number   Major   Minor   RaidDevice State
       0       8        1        0      active sync   /dev/sda1
       1       8       17        1      active sync   /dev/sdb1

我该如何做呢?

答案1

建议您使用 LVMhttp://tldp.org/HOWTO/LVM-HOWTO/,它可以让您即时管理您的分区。

否则,您需要为该分区创建新的 md 设备。

或者缩小 md0 并创建另一个http://www.howtoforge.com/how-to-resize-raid-partitions-shrink-and-grow-software-raid

相关内容