如何使用 gpt 在正在运行的 ubuntu 服务器上创建软件 raid?

如何使用 gpt 在正在运行的 ubuntu 服务器上创建软件 raid?

我的服务器上有以下硬盘结构:

fdisk -l
Disk /dev/sda: 2.7 TiB, 3000592982016 bytes, 5860533168 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: gpt
Disk identifier: EA206948-7BBC-4AD9-8835-40746D07F575

Device     Start       End   Sectors    Size Type
/dev/sda1     40      2048      2009 1004.5K BIOS boot
/dev/sda2   4096 409602047 409597952  195.3G Linux RAID


Disk /dev/sdb: 2.7 TiB, 3000592982016 bytes, 5860533168 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: gpt
Disk identifier: D2514683-E466-41C0-82AD-44635CA12AE8

Device     Start       End   Sectors    Size Type
/dev/sdb1     40      2048      2009 1004.5K BIOS boot
/dev/sdb2   4096 409602047 409597952  195.3G Linux RAID


Disk /dev/md2: 195.3 GiB, 209714085888 bytes, 409597824 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

如何查看我的 hdd-s - 2,7T 的总大小。另外,我有 的程序 raid /。这是/dev/sda2/dev/sdb2。如何在两个磁盘上创建大小为 500GB 的其他分区并制作/dev/sda3,就像我在和上使用的那样?我尝试使用。我创建了两个分区,每个分区 500GB。我制作了: 并且我将其添加到。我还将我的添加到,但重启后,我的系统未加载。哪里出错了?我该如何执行此操作?我该如何做 让和和 不/dev/sdb3Linux RAID 1/dev/sda2/dev/sdb2fdiskmdadmmdadm --create /dev/md3 --metadata=0.90 --level=mirror --raid-devices=2 /dev/sda3 /dev/sdb3ARRAY /dev/md3 UUID=3a5d7bb4:7f8f4e1f:a4d2adc2:26fd5302/etc/mdadm/mdadm.conf/dev/md3fstab/dev/sda3/dev/sdb3 Linux RaidLinux filesystem

答案1

/dev/sda3 似乎缺少文件系统 (fs)。

使用 mkfs 创建您选择的 fs 并相应地编辑 /etc/fstab。

相关内容