On 09/08/2024 at 23:36, Ryan England wrote:
I was able to set some time aside to work on the system today. I used parted to remove the partitions. Once the partitions were removed, I created the array as RAID5 using /dev/nvme0n1, /dev/nvme1n1, and /dev/nvme2n1. Including my commands below: - parted /dev/nvme0n1 - print, rm 1, quit - parted /dev/nvme1n1 - print, rm 1, quit - parted /dev/nvme2n1 - print, rm 1, quit
If you are going to use whole (unpartitioned) drives as RAID members (which I do not recommend), then you must not only remove the partitions but all partition table metadata. wipefs comes in handy. Else some parts of your system may be confused by the remaining partition table metadata and even "restore" the primary GPT partition table from the backup partition table, overwriting RAID metadata.