Can I set up software raid after installing Bazzite or do I have to set that up during installation?
🥲
1 Reply
also going to write here since i saw this thread now.
mdadm
is pre-installed so just follow whatever mdadm raid guide as that software is the best documented when it comes to raid on linux (and also the most understandable in my opinion)
mdadm --create /dev/md1 --level=1 --raid-devices=2 /dev/sdX /dev/sdY
just change to fit your needs, although instead of /dev/sdXY
use /dev/disk/by-id/whatever-the-id-is-for-the-disk
as this will guarantee you use the correct disk if you have its serial number (and you can easily find which disk it is linked to with ls -la /dev/disk/by-id
)
you can view the raids stats with cat /proc/mdstat