Mounting NTFS Drive in Mythbuntu
1) Run fdisk to determine the Drive Partition:
sudo fdisk -l
2) Create the Mount Point:
Sudo mkdir /media/<mount point>
3) Edit the /etc/fstab File:
sudo nano /etc/fstab
4) Insert the following into the /etc/fstab file:
/dev/<your partition> /media/<mount point> ntfs-3g defaults,locale=en_US.utf8 0 0
Notes:
<your partition> -> Determined in Step 1
<mount point> -> Determined in Step 2