Red HatThis forum is for the discussion of Red Hat Linux.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you're talking about mounting a file system where the Linux computer has the NTFS disk attached locally then check out http://www.linux-ntfs.org/
If you're talking about an NTFS formatted disk in a separate Windows PC then sharing it there and accessing it with Samba will not care whether it's NTFS or FAT or whatever.
If it is on the same computer then u need to recompile the kernel
for NTFS support.If it is on a different computer then share it on windows and install samba rpm on linux machine and run the command
mount -o username=windows_user,password="password" //windows_machine_name/share_name /mount-point
Hello rahulrawat ,
U can download the module from http://www.linux-ntfs.org/ according to your kernel ver & compile your kernel or else u can download rpm package according to your kernel ver & install it. This will help u mount the NTFS filesystem in read-only mode.
Hope it will solve your probs...
I read your posts and I downloaded the Linux-NTFS rpm and installed it. I have a external harddrive (NTFS) attached to the computer via USB2. When I start the computer, it recognizes the harddrive and displays it but it has the message "Unable to mount selected volume" and "unknown file system type 'ntfs'" when I ask for more info. Suggests/help would be highly appreciated.
Just discovered I had installed the wrong version of the rpm. After fixing it, it seems to be working great except that it only allows root access. I can live with that.
From kernel 2.6.15, linux is able to write to ntfs partitions.
Author: Anton Altaparmakov <aia21@cantab.net>
Date: Tue Oct 11 15:40:40 2005 +0100
NTFS: The big ntfs write(2) rewrite has arrived. We now implement our own
file operations ->write(), ->aio_write(), and ->writev() for regular
files. This replaces the old use of generic_file_write(), et al and
the address space operations ->prepare_write and ->commit_write.
This means that both sparse and non-sparse (unencrypted and
uncompressed) files can now be extended using the normal write(2)
code path. There are two limitations at present and these are that
we never create sparse files and that we only have limited support
for highly fragmented files, i.e. ones whose data attribute is split
across multiple extents. When such a case is encountered,
EOPNOTSUPP is returned.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.