Linux mint Raid Help
Guess you want to always have this partition mounted.
Do all this through CLI:
# mkfs.ext4 /dev/md127
# blkid
.. this command will type some stuff, look for line with '/dev/md127', and example how it could look like
/dev/md127: UUID="a424956c-a7af-42ed-826d-7869693436a6" TYPE="ext4" PARTUUID="9ed18be0-05"
Note the 'UUID' part.
Edit /etc/fstab file, and add following line (change UUID according to what you get):
UUID=a424956c-a7af-42ed-826d-7869693436a6 /mnt ext4 defaults 0 1
Also change '/mnt' to where you want to mount it. Make sure that directory exists.
Try with running OS to mount it:
# mount -a
Now it'll auto-mount on each boot.
Keep in mind if you mess up /etc/fstab OS will halt boot and you will need to fix it in single user mode.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now