如何在 Ubuntu Server 16.04 上调整 RAID 分区大小

如何在 Ubuntu Server 16.04 上调整 RAID 分区大小

最近我们在服务器上配置了 Ubuntu 16.04。我们有两个 256 GB 的 SSD。过了一会儿,我们发现主 RAID 分区只有 20GB,而其他分区有超过 200GB。

打印结果如下fdisk -l

Disk /dev/sda: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x807adac1

Device     Boot    Start       End   Sectors   Size Id Type
/dev/sda1  *        2048    614399    612352   299M fd Linux raid autodetect
/dev/sda2         614400   1662975   1048576   512M 82 Linux swap / Solaris
/dev/sda3        1662976  43606015  41943040    20G fd Linux raid autodetect
/dev/sda4       43606016 500117503 456511488 217.7G fd Linux raid autodetect


Disk /dev/sdb: 238.5 GiB, 256060514304 bytes, 500118192 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes
Disklabel type: dos
Disk identifier: 0x9a57a62a

Device     Boot    Start       End   Sectors   Size Id Type
/dev/sdb1  *        2048    614399    612352   299M fd Linux raid autodetect
/dev/sdb2         614400   1662975   1048576   512M 82 Linux swap / Solaris
/dev/sdb3        1662976  43606015  41943040    20G fd Linux raid autodetect
/dev/sdb4       43606016 500117503 456511488 217.7G fd Linux raid autodetect


Disk /dev/md0: 298.7 MiB, 313196544 bytes, 611712 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/md2: 217.6 GiB, 233599664128 bytes, 456249344 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes


Disk /dev/md1: 20 GiB, 21458059264 bytes, 41910272 sectors
Units: sectors of 1 * 512 = 512 bytes
Sector size (logical/physical): 512 bytes / 512 bytes
I/O size (minimum/optimal): 512 bytes / 512 bytes

问题是,每次我们想要在主分区 /dev/md1 上安装或运行新程序时,都会耗尽空间。

但问题是,我们如何才能摆脱这种情况?有没有办法使用/dev/md2beyond,/dev/md1这样我们就不会遇到磁盘空间不足的问题,甚至缩小/dev/md2和增长/dev/md1

我们遵循了许多教程,但没有成功调整大小/dev/md1

答案1

在您的情况下避免空间问题的推荐方法是将现有目录移动到文件系统/dev/md2,并使用符号链接指向新目录。

调整 MD 设备的大小是一个更复杂的过程:

  1. 将所有内容复制/dev/md2到另一个位置
  2. 删除/dev/md2设备和分区/dev/sda4以及/dev/sdb4RAID 成员。
  3. /dev/sda3将和分区的大小增加到/dev/sdb3您想要的大小。
  4. 用于mdadm --grow增加大小/dev/md1以匹配底层分区的大小。
  5. 重新创建/dev/sda4分区/dev/sdb4并在其上创建 RAID 阵列。
  6. 将数据复制回分区。

之所以必须这样做,是因为 MD 设备由磁盘分区组成,而分区是硬盘上的单个区域。因此,您必须释放分区后的空间才能增加空间。

如果使用逻辑卷管理器 (LVM),增加文件系统的大小会更容易。

相关内容