I am trying to solve the first challenge in the Linux challenges course. But I am stuck to make the mount point persistent. How can I do that?
Here is my command /dev/dba_storage/volume_1 /mnt/dba_storage xfs defaults 0 2
I am trying to solve the first challenge in the Linux challenges course. But I am stuck to make the mount point persistent. How can I do that?
Here is my command /dev/dba_storage/volume_1 /mnt/dba_storage xfs defaults 0 2
Seems path you r checking is wrong…
should be
/dev/mapper/dba_storage/volume_1
instead of
/dev/mapper/dba_storage-volume_1
(seems the auto checking is wrong for this persistent mount)
please recheck and confirm…
Thank you.
this should also cheeck the
lvdisplay lvm location, not only the mapper.
i also used the UUID just to be sure, but didn’t work still checked it ass wrong.
should be 3ways to do it,
via /etc/vgroupname/lvmname
and via UUID.
It didn’t work for me also. I tried both with uuid an partition path. Pls fix this
Just use mapper while mounting
/dev/mapper/dba_storage-volume_1 /mnt/dba_storage xfs defaults 0 0
Just use mapper while mounting
/dev/mapper/dba_storage-volume_1 /mnt/dba_storage xfs defaults 0 0