Mounting NTFS File System Drive in RHEL 7

This is a comprehensive guide on how to mount an NTFS file system in RHEL (Redhat Enterprise Linux) or to any other Linux distros.

NTFS (New Technology File System) drives can be mounted with NTFS-3G Package in RedHat Enterprise Linux. NTFS file systems are popular among Windows-based ecosystem and also compatible with other major Operating Systems.

Using this technique, you can mount or load a drive used by Windows to Linux OS and access it.

I was successful in mounting the NTFS drive in my RHEL 7 using the NTFS-3G package. There might be several other ways too, but for me, this has been the best choice.



To install NTFS-3G


Your Gift of $200 Cloud Hosting Credit is Here. Claim Now!
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

rpm -ivh epel-release-latest-7.noarch.rpm
  • Install NTFS-3G package
yum install ntfs-3g -y
  • Doing this, it will automatically mount the NTFS drives, if it is not mounted, we can mount our NTFS drive with the following command
mount -t ntfs-3g /dev/sda1 /mnt/windows

just replace sda1 with your drive location.




Doing this, you will be able to mount your NTFS drive in RHEL by using NTFS-3G package.

Before you go, let's stay connected
About the Author
Lakshman Basnet
Nepali Digital Media Marketer currently based in Adelaide, South Australia who apart from playing with his cat - Eleven, also enjoys developing web content, publishing blogs and YouTube videos in his free time.

Leave a Comment