mount -t ntfs /dev/hda2 /mnt/ntfspartition
Main Topics
Browse All TopicsHi experts,
my question is
How to mount NTFS file system in Redhat linux 9.0
Regards
Prakash
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Thats read only
for R/W supportcheckout
http://freshmeat.net/proje
I haven't had any problems but i wouldn't use it if you have important data
1. Login as root by running from a terminal su followed by typing the root password.
2. Create a directory in your /mnt folder. This can be done by running mkdir /mnt/windir where windir is the name of the directory where the NTFS partition will be mounted.
3. Run fdisk -l and note the name of the device file for the NTFS partition. Lets say the device file name is found to be /dev/Y.
4. Open the file /etc/fstab.
5. On a new line at the bottom of the file, add the line
/dev/Y /mnt/windir ntfs users,owner,ro,umask=000 0 0
6. Save and quit the file /etc/fstab
7. Then run 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 very risky (see http://linux-ntfs.sourcefo
cnu....
Business Accounts
Answer for Membership
by: Jase-CoderPosted on 2004-07-28 at 03:46:34ID: 11654714
you type mount -t nfs severname:path_on_server /whee you want the aprtition
an exampl would be:
say my server is 192.168.0.1 on that server I can access /home/Jase
on my system I want to mount that partition, I have to specify a directory and say I mount it in /mnt/ExtraSpace
The line I type would be
mount -t nfs 192.168.0.1:/home/Jase /mnt/ExtraSpace
also you must have portmap running for the nfs to work