#Windows-Partition WDRED1
UUID=27587FAF6E5A444E /media/WDRED1 ntfs users,defaults,umask=0000,uid=1000 0 0
That above is added to my "/etc/fstab" file.
"/media/WDRED1" is where it will be mounted at start up, you create this using "sudo mkdir /media/WDRED1" (or whatever you want to call it)
this command returns all UUID info for all the discs, this is how you would determine the UUID to add to fstab
sudo blkid
or
ls -l /dev/disk/by-uuid/
then edit /etc/fstab, you will have to use "sudo vi /etc/fstab" or similar, then add an extra line at the end:
UUID=xxxxxxxxxxxx /media/MyNAS ntfs users,defaults,umask=0000,uid=1000 0 0
corrected with your UID number, and your mountpoint created in /media, also change "ntfs" accordingly, the last bit starting with "users,defaults" should be correct and can remain unchanged
then use it by "sudo mount -a", and make sure it works upon reboot.