编译完内核让它支持ntfs之后 只需要make dep就可以吗?
编译完内核让它支持ntfs之后 只需要make dep就可以吗?,编译完内核让它支持ntfs之后,只需要make dep就可以吗?
编译完内核让它支持ntfs之后,只需要make dep就可以吗?
我只是加入了ntfs部分,也要执行一下这么多命令么?
make dep
make clean
make bzImage
make modules
make modules_install
make install
reboot!!
jeffyan 回复于:2004-02-12 23:12:24 搜 一句话 里 有更简单的R/w ntfs
bird123 回复于:2004-02-13 09:53:35 不用重新编译内核
cd /usr/src/linux-2.4
编辑.config文件(如果你没有.config文件,cp configs/kernel-2.4.20-i686.config .config)
# CONFIG_NTFS_FS is not set
# CONFIG_NTFS_RW is not set
改为
CONFIG_NTFS_FS=m
把Makefile文件里的
EXTRAVERSION = -28.8custom
删除custom
make modules ntfs
cp fs/ntfs/ntfs.o /lib/modules/2.4.20-28.8/kernel/fs
这里的2.4,2.4.20,28.8,2.4.20-28.8请按照你的版本号
具体请参考http://www-900.ibm.com/developerWorks/cn/linux/l-tip-prompt/tip13/index.shtml
jigenxiang 回复于:2004-02-13 10:06:37 觉得还是下个补丁方便点