CentOSFedoraLinuxOperating SystemsRedHatUbuntu

[How To] Enable NTFS support on Ubuntu/CentOS/RHEL/Fedora

The Linux operating systems supports NTFS partition format. To enable NTFS partition support, there are some packages required to be installed.

To enable NTFS support on

Ubuntu:

# sudo apt-get install ntfs-3g

CentOS/RHEL:

# yum install ntfs-3g
# yum install ntfsprogs ntfsprogs-gnomevfs

Note: Enable rmpforge or EPEL repo before proceeding with installation.

The version prior to 5.4 may not support the package. Also, old kernel version may require additional dependencies.

Once the package is installed, the plug n play devices with NTFS partition shall be auto mounted.

To mount the existing NTFS partition drive, the fstab entry has to be modified as below:

/dev/PARTITION_NAME     /media/MOUNTPOINT_NAME     ntfs-3g     defaults,locale=en_US.utf8   0    0

Mount drive performing steps as below:

# mkdir /media/MOUNTPOINT_NAME
# umount /dev/PARTITION_NAME
# mount -a

That's it!

Abhijit Sandhan

Love to Automate, Blog, Travel, Hike & spread Knowledge!

Related Articles

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Back to top button