Ubuntu 18.04サーバーに1TBのハードドライブがあり、raid1に2つの6TBのハードドライブを追加したいと思います。私のファイルシステムは1TB HDで読み取り専用になり、他の2つのドライブは表示されなくなり、ほとんどのプログラム(vim、scpなど)は実行されません。 RAIDドライブを最初から使用(再フォーマット)しながら既存のドライブを回復するにはどうすればよいですか? CD+Tab を押してもエラーが表示されます。
bash: cannot create temp file for here-document: Read-only file system
私がここに来た方法:
2つのハードドライブをraid1として構成するために、このチュートリアルに従ってください。
https://www.linuxbabe.com/linux-server/linux-software-raid-1-setup
しかし、私はubuntuサーバー18.04を使用しているので、Linux RAID自動検出(fd)はオプションではありません。 Linux RAIDでは29を選択しました。
私はraidを設定し、sudo fsdisk -lの出力は/mnt/raid1にディレクトリを作成しようとするまでチュートリアルのように大丈夫だった。権限のため使用できず、/mnt/raid1 を chown することもできません。
走るsudo fsdisk -l
新しいドライブのいずれかに次のメッセージが表示されます。
The backup GPT table is corrupt, but the primary appears OK, so that will be used.
sudo fsdisk -l 出力は当時この記事と同じです。https://ubuntuforums.org/showthread.php?t=2361339だから私はそうしました:
sudo umount /dev/md0
sudo mdadm --stop /dev/md0
mdadm --assemble --scan
その後、/dev/sdb1 /dev/sdc1を表示またはアクセスできなくなり、md0の再構成が失敗します。
ドライブを見ることができるかどうかを確認するためにサーバーの電源を入れましたが、今は再起動され、shutdown -r
何も機能せず、再び閉じることもできません。
$ sudo shutdown now
Failed to open /dev/initctl: No such device or address
Failed to talk to init daemon.
sudo fdisk -l 出力には、2 つの新しいドライブではなく、元のハードドライブのすべてのパーティションが表示されます。以前は、次のパーティションはすべて表示されませんでした。
$ sudo fdisk -l
Disk /dev/loop0: 212.1 MiB, 222388224 bytes, 434352 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/loop1: 3.1 MiB, 3248128 bytes, 6344 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/loop2: 88.7 MiB, 92983296 bytes, 181608 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/loop3: 89 MiB, 93327360 bytes, 182280 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/loop4: 217.8 MiB, 228388864 bytes, 446072 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/loop5: 3.1 MiB, 3252224 bytes, 6352 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/loop6: 11.7 MiB, 12242944 bytes, 23912 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/sda: 931.5 GiB, 1000204886016 bytes, 1953525168 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: AF308587-0A23-464F-9CF7-1C3D17ADA860
Device Start End Sectors Size Type
/dev/sda1 2048 4095 2048 1M BIOS boot
/dev/sda2 4096 2101247 2097152 1G Linux filesystem
/dev/sda3 2101248 1953521663 1951420416 930.5G Linux filesystem
Disk /dev/mapper/ubuntu--vg-ubuntu--lv: 337 GiB, 361842606080 bytes, 706723840 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/mapper/ubuntu--vg-lv--ml: 434.8 GiB, 466876366848 bytes, 911867904 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