Connect Windows external HDD to RHEL 6 (Santiago)


The latest stable release of Red Hat Enterprise Linux is 6.1 named as Santiago. Now RHEL 6.1 does not come with NTFS filesystem already installed. So when you try to mount a Windows USB external HDD that has NTFS filesystem, there is a error thrown filesystem ntfs not found. So generally any one would type “yum install ntfs” in the terminal but it seems that this too does not work.

Following is a simple solution to install ntfs-3g and mount the NTFS filesystem disk:

Step 1.: Download and install ntfs-3g either by building the source(./configure… make… make install) or finding an rpm for your distribution from here.

Step 2: mount the Hard Disk using the following command:

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

note that the filesystem should be mentioned as ntfs-3g and not just ntfs.

Further Reading:

http://www.tuxera.com/community/ntfs-3g-download/

Advertisement

About Dominic

J for JAVA more about me : http://about.me/dominicdsouza
This entry was posted in Thechy Stuff. Bookmark the permalink.

1 Response to Connect Windows external HDD to RHEL 6 (Santiago)

  1. yum install ntfs-3g worked fine in CentOS 6.4

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s