Dual boot Windows + Linux

Bluetooth issues: https://unix.stackexchange.com/questions/255509/bluetooth-pairing-on-dual-boot-of-windows-linux-mint-ubuntu-stop-having-to-p

In General:

  1. Start Linux and pair your BT device
  2. Start Windows and pair your BT device
  3. Shutdown windows completely, not hibernate mode
  4. Start Linux and get the pairing key from windows

Mount windows system patrition writable

# create mount point
sudo mkdir /media/<username>/win-part

# mount writable ntfs partition (not possible if windows is in hibernate mode)
sudo mount -t ntfs-3g -o rw /dev/sda4 /media/user/win-part/

# unmount 
sudo umount /media/user/win-part