Mount NTFS HDD on linux

I have an external HDD, Maxtor, with an NTFS partition on it. How can this be mounted on an RHEL5 OS?


assuming you have ntfs-3g installed, you can mount it by using

mount /dev/sdX# -t ntfs-3g /media/MOUNTPOINT

WHERE:

X = letter (depends on your computer)
# = number (partition number you want to mount)
MOUNTPOINT = folder (where this disk would be mounted)