Mounting NTFS Partition on RHEL 5.x/6.x
GCC Packages is must for Mounting NTFS.
After GCC installed
#yum -y install fuse fuse-ntfs-3g dkms dkms-fuse
if you are running xen kernel then only run this command
#yum install kernel-xen-devel
if you are running PAE kernel then only run this command
#yum install kernel-PAE-devel
Now Make Entry in your /etc/fstab file
make backup of your /etc/fstab by executing this command
#cp /etc/fstab /etc/fstab.bkp
now open your /etc/fstab file in your favorite editor
#vim /etc/fstab like below example
/dev/sda1 /mnt/ntfs ntfs-3g defaults 0 0
save & exit from file
#mount -t ntfs-3g /dev/<devicename> /<mountpoint>
No comments:
Post a Comment