Redhat Enterprise Linux (RHEL) is not automatically detect any hdd formatted with ntfs. So it can't be mounted. But now there is a way to make it detected, by using NTFS-3g.
NTFS-3G allows us to handle NTFS file systems of Windows OS. Its an open source read/write NTFS for Linux installations. It offers the capability to create, delete, rename, move files, directories, hard links, and streams. Special files such as the symbolic links, devices and FIFOs, ACL, extended attributes can be easily handled. Below are the steps to install ntfs-3g :
- Logged in as Root
# su -
- Install ntfs-3g, we can use yum or rpm -ivh
# yum install ntfs-3g # rpm -ivh ntfs-3g fuse-ntfs-3g-1.1004-1.el5.rf.i386.rpm
-
Determine the name of an NTFS partition :
# fdisk -l /dev/sdb ;replace /dev/sdb with your own
-
Load the fuse driver :
# modprobe fuse
-
Create a mount point
# mkdir /mnt/ntfs
- Mount the ntfs partition
# mount -t ntfs-3g /dev/sdb1 /mnt/ntfs
# umount /mnt/ntfs
No comments:
Post a Comment