Linked by Robert C. Dowdy on Tue 8th Oct 2002 02:36 UTC
Permalink for comment
To read all comments associated with this story, please click here.
To read all comments associated with this story, please click here.
News
Linked by Thom Holwerda on 05/25/13 0:45 UTC
Linked by Thom Holwerda on 05/24/13 23:59 UTC
Linked by Thom Holwerda on 05/24/13 22:33 UTC
Linked by Howard Fosdick on 05/24/13 21:41 UTC
Linked by Thom Holwerda on 05/24/13 14:44 UTC
Linked by Thom Holwerda on 05/23/13 23:22 UTC
Linked by Thom Holwerda on 05/23/13 22:04 UTC
Linked by Thom Holwerda on 05/23/13 22:01 UTC
Linked by Thom Holwerda on 05/23/13 17:52 UTC
Linked by Thom Holwerda on 05/22/13 22:23 UTC
More News »
Sponsored Links



I have successfully compiled the ntfs module and using it to
read NTFS partition on my desktop.
Here is what I did:
0) become root
1) rpm install the kernel sources that comes with the RH8.0
distribution ( if not aleardy done )
2) cd /usr/src/linux-2.4
3) make oldconfig
4) edit .config file and enable NTFS readonly option
CONFIG_NTFS_FS=m
5) rm /usr/src/linux-2.4/include/linux/modules/*
6) make dep
7) make modules
8) make modules_install
9) cp -R /lib/modules/2.4.18-14custom/kernel/fs/ntfs /lib/modules/2.4.18-14/kernel/fs
10)insmod ntfs
PS:
a) fdisk -l [ this will list all partitions including
the NTFS ones.
b) http://linux-ntfs.sourceforge.net/info/index.html
c) my /etc/fstab line for mounting the ntfs partition in
/dev/hda1 to /mnt/win/C
/dev/hda1 /mnt/win/C ntfs defaults 0 0