This is kinda embarrassing, but I’m really struggling to get this Windows partition to automount correctly
There are 2 NTFS drives with a partition each in the system, in addition to the Linux ones. One is a USB drive (called “Expansion Drive”, for some reason), that I do not want automounted. The other is an IDE drive (I think, might be SATA…), and I do want this to automount. I have already symlinked Documents, Pictures & Music from /home to the relevant My Documents folder under Windows. Problem is, I cannot get it to automount at boot. When trying to mount it post-boot, it asks for the root password - I do not want this behavior, as I will not be giving out the root password. Once the drive is manually mounted, the symlinks work perfectly.
For info, blkid:
/dev/sda1: UUID="56241CCE241CB34B" TYPE="ntfs" /dev/sda6: LABEL="swap" UUID="74283a74-60b4-4373-9e49-4806f65d0656" TYPE="swap" /dev/sda5: LABEL="boot" UUID="4ba95011-a723-4136-82f5-e91477bc44f9" TYPE="ext2" /dev/sda7: UUID="c0ed3643-7339-4087-8156-bb76d94d47f3" TYPE="ext4" /dev/sda8: LABEL="home" UUID="2b101c2c-a0f8-4707-8a15-243d15492ee4" TYPE="ext4" /dev/sdb1: LABEL="Expansion Drive" UUID="A2CC6E0BCC6DDA55" TYPE="ntfs"
/etc/fstab:
# UNCONFIGURED FSTAB FOR BASE SYSTEM proc /proc proc defaults 0 0 # /dev/sda5 UUID=4ba95011-a723-4136-82f5-e91477bc44f9 /boot ext2 rw,errors=remount-ro 0 0 # /dev/sda6 UUID=74283a74-60b4-4373-9e49-4806f65d0656 swap swap sw 0 0 # /dev/sda7 UUID=c0ed3643-7339-4087-8156-bb76d94d47f3 / ext4 rw,errors=remount-ro 0 1 # /dev/sda8 UUID=2b101c2c-a0f8-4707-8a15-243d15492ee4 /home ext4 rw,errors=remount-ro 0 0 # /dev/sda1 UUID=56241CCE241CB34B /media/restall/56241CCE241CB34B ntfs auto,rw,errors=remount-ro 0 0(the sda1 entry was manually entered, and it doesn't work)
I should know this, but I’ve been over it trying different things, and it won’t play!