To mount Windows 10 automatically

If you have a dual-boot with linux and Windows 10, Windows used to set itself to the hibernation mode. A simple and fast way to mount windows partition is to remove hiberfile via /etc/rc.local file.

An example Windows 10 on the partition /dev/sda2:

… add to the /etc/rc.local file line
ntfs-3g -o remove_hiberfile /dev/sda2 /mnt/windows

The mount-point must make also for Windows
sudo mkdir /mnt/windows

Now Windows mounts automatically under /mnt/windows

If wanting to make a symbolic link to the user’s home diretory, run
ln -s /mnt/windows /home/user_name_here

to-mount-windows-10-automatically