Saturday 14 September 2013

Mount / Enable ntfs partition under CentOS /RHEL 5 or 6

Mount / Enable NTFS Partition on CentOS  version 5 or 6?

How do I mount ntfs partition under RHEL 5 or 6?


wget ftp://ftp.univie.ac.at/systems/linux/fedora/epel/beta/6/i386/epel-release-6-5.noarch.rpm
# rpm -ivh epel-release-6-5.noarch.rpm

# yum -y install ntfs-3g


First, load the fuse driver, enter:
# modprobe fuse


Create a mount point, enter:
# mkdir /mnt/ntfs


To mount the ntfs partition, enter:
# mount -t ntfs-3g /dev/sda1 /mnt/ntfs


To Check the Partition
$ df -h





How Do I Unmount NTFS Partition?

Type the following command:
# umount /mnt/ntfs

No comments:

Post a Comment