- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: How do I mount a NTFS partition with rw suppor...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 07:52 PM
01-23-2003 07:52 PM
I have two disk,one installed RH8 and another install W2k server with NTFS.I want to mount NTFS partition under linux with write support.I compiled my kernel with NTFS file system support(read only) to M and NTFS write support to Y.I boot my system with the new kernel.But when I try to mount the Ntfs partition,the system tell me the partition is read-only.
Is there anything I need do to get my purpose.Thanks for your help.
Best regards,
James
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 08:44 PM
01-23-2003 08:44 PM
Re: How do I mount a NTFS partition with rw support?
Is the NTFS module inserted when you try mount?
How are you mounting ? Are you using "-o rw", or is it already mounted?
Sorry for the questions, just trying to get a clear picture of whats happening.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 10:46 PM
01-23-2003 10:46 PM
Re: How do I mount a NTFS partition with rw support?
Thanks for your quick response.I try to make it more clear about the question you asked.
1.I did install the all modules by using make modules and make modules_install commands.
2.The attached file is the output by issue lsmod.
3.I use that command to mount the ntfs partition,
mount -t ntfs -o rw /dev/sdb1 /mnt
After that,I can get into the /mnt and see all the files.But I can't write the boot.ini file.
I am looking forward to your reply. Thanks again.
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 10:53 PM
01-23-2003 10:53 PM
Re: How do I mount a NTFS partition with rw support?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-23-2003 11:38 PM
01-23-2003 11:38 PM
Re: How do I mount a NTFS partition with rw support?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2003 12:16 AM
01-24-2003 12:16 AM
Re: How do I mount a NTFS partition with rw support?
I am afraid it isn't root cause to my question.When I get into the /mnt,I see all the files were set to -rw-------,all directorys were set to drwx------.
Thanks for your help.
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2003 01:13 AM
01-24-2003 01:13 AM
Re: How do I mount a NTFS partition with rw support?
the user who mounts it, should be able to view it,,,,
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-24-2003 01:23 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-28-2003 06:44 PM
01-28-2003 06:44 PM
Re: How do I mount a NTFS partition with rw support?
I think U.SivaKumar is right.
BTW,I found a way to get write support.
1.mount -t ntfs /dev/sdb1 /mnt
2.mount -o remount,rw /dev/sdb1 /mnt
Maybe others have different result with me.
Regards,
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-04-2003 11:27 PM
03-04-2003 11:27 PM
Re: How do I mount a NTFS partition with rw support?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-05-2003 10:32 PM
03-05-2003 10:32 PM
Re: How do I mount a NTFS partition with rw support?
Regards,
James
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-07-2003 10:22 AM
03-07-2003 10:22 AM
Re: How do I mount a NTFS partition with rw support?
mount -t ntfs /dev/device /filesystem-mountpoint -o uid=root -o gid=root -o umask=022
A good place to readup on this would be http://linux-ntfs.sourceforge.net/info/ntfs.html#4.1
Hope this helps.