I've found out two ways to automount a NTFS partition on Ubuntu start up.
File /etc/rc.local:
mount -t ntfs /dev/sda8 /mnt/data/Or by fstab:
UUID=1C02CB8502CB627E /media/data/ ntfs defaults 0 0- Is there any difference between them?
- Is one more recommended than other? Which should I choose?