Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Name: Apple Date: August 2, 2001 at 13:26:58 Pacific
Reply:
you can mount an NTFS partition as read only in linux. modprobe ntfs (assuming ntfs support was compiled into the kernel as a module) and mount -t ntfs /dev/hda3 /mnt
Unless it's in your fstab as user mountable, only root can access the ntfs partition.
0
Response Number 2
Name: joe Date: December 7, 2001 at 21:20:45 Pacific
Reply:
can i have more detailed instructions? i want to mount ntfs, but ntfs support is not in my kernel. I downloaded the ntfs driver from the ntfs site on sourceforge, and i think i compiled and installed the module (by that i mean, i did configure;make;make install), but i cannot mount the partition. I have zero experience with adding modules to my kernel, or recompiling. I am using the default kernel that came with the RH 7.2 install disk (2.4.7 i think)
0
Response Number 3
Name: DoomBringer Date: March 19, 2002 at 02:14:29 Pacific
Reply:
I have the same problem with my Linux. I have Kernel version 2.4.7-10. And there was no NTFS driver installed and I downloaded new ones but it will not work.... damn...
Summary: Hi: I am a linux newbie. I installed red hat linux 7.2, tried to mount ntfs partition to linux in: mount -t ntfs /dev/hada1 /mnt/windows after i mdir /mnt/windows, but not worked. The error meaasg...
Summary: You can mount NTFS partitions providing that the file system type is supported in your kernel. The command would be the same as mounting any other device: # mount -t ntfs /dev/foo /mnt/bar Bear in min...