fix forklift-upgrade-arch-linux-precision-3561.md

This commit is contained in:
2021-10-22 00:36:14 -07:00
parent 848f3d73bd
commit 4cf55974ec
7 changed files with 61 additions and 45 deletions

View File

@ -156,10 +156,14 @@ and also plugged in the thumbdrive on which my Arch system was installed.
I opened each nvme ssd in `gdisk`, created a new _gpt_ partition table,
an 1GB _efi_ partition (type ef00), and for the remainder of each disk
created a Linux Raid Parition (type fd00).
* I formatted one of the _efi_ partitions:
* `mkfs.vfat -F32 /dev/nvme0n1p1`
* I created a _raid_ array:
* `mdadm --create --verbose --level=1 --metadata=1.2 --raid-devices=2 /dev/md0 /dev/nvme0n1p2 /dev/nvme1n1p2`
```bash
mdadm --create --verbose --level=1 --metadata=1.2 \
--raid-devices=2 /dev/md0 /dev/nvme0n1p2 /dev/nvme1n1p2
```
* I luks-encrypted the new _raid_ array:
* `luksFormat -y -v /dev/md0`
* I opened the new luks device: