Linux NTFS – Mount NTFS Filesystem on RHEL 5 with Read/Write Capability

linuxntfsrhel5

I'm using RHEL 5.0 with the kernel 2.6.8-18.el5. I want to mount my external hard disk drive with the NTFS file system. I cannot mount it because it doesn't support NTFS file system. Error msg: mount: unknown 'ntfs' file system.

Can anyone tell me to mount this hard disk?

Regards,

Sarith

Best Answer

You need to use the NTFS-3g driver:

mount -t ntfs-3g /dev/sda1 /mnt/windows

I'm not sure if there's a RHEL package available for it in YUM.

Related Topic