Your fstab is formed like so on each line:
If you with to specify a filesystem option, you must do so on the fourth field. This is the same place that you have errors=remount-ro
(which is itself an option). Multiple options must be separated by commas, as is in your example above. The option "defaults" is only a field placeholder that does nothing, and can be omitted if there is at least one other option specified.
Be careful to not make mistakes, as your filesystem will fail to mount rather than ignoring a malformed option. You should be checking to see if your fstab entries work after you've modified them. The easiest way to do this is to attempt to mount these devices as specified in your fstab.
To do this, you must use the mount
command, which follows a very similar syntax to the fstab itself. It's prudent to read the mount
man page for this and future use, as you'll likely be using it often to do various tasks. In this case, the most simple way to make sure your fstab entries function is to instruct mount
to run through your entire /etc/fstab file via this command: mount -a
. After using this to attempt mounts, check dmesg
to see if you had any errors.