A little system description, I have 2 SSD drives running raid 0 strictly for boot drives. I also have a 1tb HDD that I am trying to add to /etc/fstab on ubuntu 15.10.
Here is my entry into /etc/fstab
# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a
# device; this may be used with UUID= as a more robust way to name devices
# that works even if disks are added and removed. See fstab(5).
#
# <file system> <mount point> <type> <options> <dump> <pass>
/dev/mapper/isw_cdaafghhha_Volume0p2 / ext4 errors=remount-ro 0 1
/dev/mapper/isw_cdaafghhha_Volume0p1 /boot/efi vfat umask=0077 0 1
/dev/mapper/isw_cdaafghhha_Volume0p3 none swap sw 0 0
UUID=06c16279-3ef0-4c36-8879-d5e417324355 /media/brennan/06c16279-3ef0-4c36-8879-d5e417324355 ext3 defaults 0 0
Now when I run mount -a
I get
mount: /etc/fstab: parse error: ignore entry at line 11.
Any ideas?
Thanks!!