RAID Mounted Twice?

I want to put my RAID 0 array into fstab so that it’s always mounted. I am not used to systemd so I’m not sure what to mount. When I click the array in Dolphin it pops right up and works. The mount command does not show a single mount point so I’m now sure how to mount it:

/dev/md126p1 on /run/media/mooreted/34BE3FFBBE3FB3E8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096)
/dev/md126p1 on /var/run/media/mooreted/34BE3FFBBE3FB3E8 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096)

I don’t know why the same drive seems to be mounted twice. Of course it could be each drive is mounted in a separate place and then the RAID is assembled, but the OS should only see one drive.

Anyway, the question is: How do I mount my RAID array through fstab?

Ok, I guess I’ll just try:

/dev/md126p1 /mnt/Music ntfs-3g defaults 0 0

See what happens.

On 2013-04-20 04:06, mooreted wrote:
>
> Ok, I guess I’ll just try:
>
> /dev/md126p1 /mnt/Music ntfs-3g defaults 0 0
>
> See what happens.

I have a test raid mounted thus:


> /dev/disk/by-id/md-uuid-825b22e8:af550e83:93727666:fb8987fd /data/raid       xfs    defaults,nofail   1 3

This also works:


> LABEL=raid5                                                 /data/raid      xfs     defaults,nofail   1 3

Of course, mine uses xfs filesystem.


Cheers / Saludos,

Carlos E. R.
(from 12.1 x86_64 “Asparagus” at Telcontar)

Great, thanks. Was afraid I might break the RAID, but it’s working.

Have a good weekend.