Hi, I have two HDDs mounted in fstab only for user data - one works fine, the other is read-only for reasons I don't understand.
Here's my /etc/fstab file:
LinuxData is fine, BackupRed can't be written to, although it's mounted the same as LinuxData.
their respective lines of output for mount -l look the same too:
What I want is for both to be mounted an writable at boot.
Here's my /etc/fstab file:
Code:
# <file system> <mount point> <type> <options> <dump> <pass> # / was on /dev/sdb7 during installation UUID=584284b9-8257-42b6-b156-17f6f2011eca / ext4 errors=remount-ro 0 1 # swap was on /dev/sda6 during installation UUID=8f557d20-e7e6-44ac-9138-3f4fefe65dad none swap sw 0 0 # LinuxData /dev/sda2 LABEL=LinuxData /media/LinuxData ext4 defaults 0 2 # BackupRed /dev/sdb1 LABEL=BackupRed /media/BackupRed ext4 defaults 0 2
their respective lines of output for mount -l look the same too:
Code:
/dev/sdb1 on /media/BackupRed type ext4 (rw) [BackupRed] /dev/sdc2 on /media/LinuxData type ext4 (rw) [LinuxData]
Comment