My system is on dual boot. I have installed both RHEL 6 and win7 in it. I use RHEL mostly and I want to use my windows' NTFS drive in RHEL. How can I do it? Tell me the procedure.

|
|
|
A very similar question seems to have been answered over at Super User. http://superuser.com/questions/251663/unable-to-mount-ntfs-drive-with-rhel-6 Hope that helps. Edit: If you wanted to mount sda3 your command would look like this: mount -t ntfs-3g /dev/sda3 /mnt/windows For more information on ntfs-3g check out the site here. |
||||
|
|
|
I don't have RHEL, but |
|||
|
|
Install the You must be logged in as
if yum is not configured install it by using rpm command. Entering the below commands would help you determine the name of an NTFS partition :
It is essential to load the fuse driver. The below command should help you do that :
Now using the below command you must build a mount point:
The following command would help you with mounting the ntfs partition :
This is a temporary mounting only, if you reboot your pc the mount point will be lost. To mount it permanently, you need to edit the
in the file
clear explanation for each column:
last two columns same as 0 0 Hope it will work. |
||||
|
|