Posts

Showing posts with the label NTFS

How to mount NTFS (Windows) partition on RHEL or CentOS 7 ?

H ow to mount NTFS (Windows) partition on RHEL or CentOS 7 ? Here for this tutorial i am using CentOS 7 OS, Because you can easily find many open source 3rd party repos to install your any software with its dependency, just in one click. Or If you are working on RHEL then you can get all the required packages from these two sites, 1. Before downloading fuse & ntfs-3g we will have to install EPEL (Extra Packages for Enterprise Linux) repository: # yum --enablerepo=extras install epel-release Or directly install : # rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm 2. Install "fuse" and "ntfs-3g" packages: # yum install ntfs-3g fuse 3. Once both of these packages are installed, create a mount directory where we are planning to mount NTFS partition or disk: # mkdir /mydisk-ntfs 4. To mount NTFS disk partition temporarily, you should get to know the NTFS device name in my case it's "/dev/sdb1"...