Hi,
I have RH 9 on my pc. How to access NTFS partitions from Linux?
Thanks
Ketan
Dear Ketan,
Inorder to access NTFS partion from RH9 u shall have to recompile the kernel with NTFS support. Article for the same can found in LinuxForU Aricles.
Regards, -Sampat.
Ketan Sahasrabudhe ketansahasrabudhe@hotmail.com wrote: Hi,
I have RH 9 on my pc. How to access NTFS partitions from Linux?
Thanks
Ketan -- http://mm.ilug-bom.org.in/mailman/listinfo/linuxers
_________________________________ "If your only tool is a hammer, every problem looks like a nail" _________________________________
--------------------------------- Do you Yahoo!? Protect your identity with Yahoo! Mail AddressGuard
Ketan Sahasrabudhe wrote:
Hi,
I have RH 9 on my pc. How to access NTFS partitions from Linux?
If your kernel has ntfs support then u can access that with the command `mount`.
else just download the rpm from the follwoing site and install it.
http://linux-ntfs.sourceforge.net/rpm/redhat9.html
And after that you can use `mount` to access ntfs partition.
-Raj
This how-to describes how to mount an NTFS partition in linux so that the user can access files on the NTFS partition from linux normally.
1. Login as root by running from a terminal CODE su followed by typing the root password. 2. Create a directory in your /mnt folder. This can be done by running CODE mkdir /mnt/X where X is the name of the directory where the NTFS partition will be mounted. 3. Run CODE fdisk -l and note the name of the Device for the NTFS partition. Lets say the device name is found to be /dev/Y. 4. Open the file /etc/fstab in your favorite text editor. 5. On a new line at the bottom of the file, add the line CODE /dev/Y /mnt/X ntfs users,owner,ro,umask=000 0 0 where X is the name of the directory you created in step 2. 6. Save and quit the file /etc/fstab 7. Then run CODE mount -a and the NTFS partition will be mounted. It will also be mounted automatically after reboot so that you do not have to do anything after you reboot. This will allow all users READ ONLY access to the NTFS partition. Write access to NTFS partitions is still considered very risky
--------------------------------- Do you Yahoo!? New Yahoo! Photos - easier uploading and sharing
check out http://www.jankratochvil.net/project/captive/
i tried it, it works. Anand
Ketan Sahasrabudhe wrote:
Hi,
I have RH 9 on my pc. How to access NTFS partitions from Linux?
Thanks
Ketan
K.Anand wrote:
check out http://www.jankratochvil.net/project/captive/
i tried it, it works. Anand
Ketan Sahasrabudhe wrote:
Hi,
I have RH 9 on my pc. How to access NTFS partitions from Linux?
Thanks
Ketan
http://www.it.fht-esslingen.de/~zimmerma/software/lread.html <<<<try that link!