Good afternoon
I have no problems mounting drives (regular ext4 or ext 4 over software RAID 5) from command line by just using "mount /dev/my_device /my_directory" but when I try to do it in fstab, nothing seems to work.
My fstab lines look like:
When I try to test-mount them using "mount -a", I get:
Any idea of what could be wrong?
I have no problems mounting drives (regular ext4 or ext 4 over software RAID 5) from command line by just using "mount /dev/my_device /my_directory" but when I try to do it in fstab, nothing seems to work.
My fstab lines look like:
Code:
# Long term data
UUID=6eb7958e-67d6-4b17-a298-06b47dbd63c3 /mnt/data ext4 defaults,nobootwait,nofail 0 2
# Temporal drive
UUID=f5ae6e64-7a18-4229-9add-fe9c1ed9bc7e /mnt/temp ext4 defaults,nobootwait,nofail 0 2
When I try to test-mount them using "mount -a", I get:
Code:
mount: /mnt/temp: wrong fs type, bad option, bad superblock on /dev/sdd1, missing codepage or helper program, or other error.
Any idea of what could be wrong?