LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   mount ntfs partitions. (https://www.linuxquestions.org/questions/linux-general-1/mount-ntfs-partitions-711951/)

dipanjan 03-16-2009 08:09 AM

mount ntfs partitions.
 
Hi
I have redhatlinux9 and windows-xp.pls suggest how I mount ntfs partition from linux.I already mount a vfat partition from linux,
but I need to mount ntfs partitions.

Thanks
Dipanjan

jschiwal 03-16-2009 08:26 AM

I don't know if redhat 9 had a mature NTFS kernel module, or a fuse module & ntfs-3g package. You may need to upgrade to a modern Red Hat or Fedora distro. You are running a version that is terribly obsolete and no longer supported with security updates.

To read & write to an NFTS filesystem, using a modern Linux distro, you would install the ntfs-3g package, the ntfsprogs package, and then use the filetype ntfs-3g in /etc/fstab or your mount command.

Here are the options I am using for my Vista partition listed by the mount command.
/dev/sda2 on /mnt/vista type ntfs (rw,noexec,nosuid,nodev,fmask=117,dmask=007,uid=1000,gid=1000)

Your UID & GID will be different. You can use your username and group name instead of a number.
Code:

sudo mount -t ntfs-3g /dev/sda2 /mnt/vista/ -o rw,user,fmask=117,dmask=007,uid=jschiwal,gid=jschiwal
The in-kernel ntfs module may be mature enough to write. I don't know however. Until recently, you could only write to a file upto it's current size. But for your version, it certainly isn't mature enough to write. I don't even know if an ntfs driver exists back then.

jiikka 03-16-2009 08:38 AM

check
 
Ello dipanjan,

First you have make sure that the specific NTFS modules were installed in your kernel. I am not sure whether it would be installed by default. Go to your kernel source n give make menuconfig (Text based color menus, radiolists & dialogs.), go to the file system menu and check out if NTFS option is enabled, if its enabled just exit without savin. if its not enabled enable it n recompile your kernel.

then go through this link
http://www.linuxconfig.org/How_to_mo...d_write_access

hope my help was useful.

hope this link will also be helpful.
http://www.redhat.com/docs/manuals/l...artitions.html

jiikka 03-16-2009 08:45 AM

Ello
before i submitted my reply seems you hav got a better reply, i dont think my suggesion would be applicable for older versions of kernel.

tredegar 03-16-2009 12:47 PM

dipanjan,

The above posters are saying that your version of linux is too OLD.
Red Hat 9 = 2003 No?

It's like you saying "I have windows 3.0 (from 1983?) How do I make it recognise my iPod?"

It's time for an upgrade - you will like the improvements linux has made in the last 6 years !


All times are GMT -5. The time now is 11:55 AM.