It shows that your settings aren't being saved and written to /etc/fstab. You could, as root, edit the file directly and add lines for /dev/sda1 and /dev/sda2.
When in PCC, did you select a mount point for the partition, before or after setting the options?
A) But what exactly do I write?
B) No. Since they're both Windows. I'd choose Windows as the mount point?
Each mount point must be exclusive. Usually you'd mount them in
/mnt/windows-c and
/mnt/windows-rec or something similar;
win-c and
win-rec would do nicely. The names are up to you. As
root you'd need to create those directories first, then add lines to
/etc/fstab like;
/dev/sda1 /mnt/win-rec ntfs-3g rw,nosuid,nodev,user,noauto,umask=000 0 0/dev/sda2 /mnt/win-c ntfs-3g rw,nosuid,nodev,user,noauto,umask=000 0 0You could use the command;
[root@localhost ~]# blkidto see the actual
UUID numbers, and use them in place of the
/dev/sdn designations, like the lines already there.