linux如何编译安装新内核支持NTFS文件系统(
发布网友
发布时间:2022-04-19 13:59
我来回答
共1个回答
热心网友
时间:2023-07-02 03:18
1. # cd /usr/src/linux-2.4
2. # make menuconfig
3. 选中File System下的NTFS file system support (read only)为M
4. # uname -a
2.4.21-27.0.2.EL
5. # vi Makefile
确保前几行为
VERSION = 2
PATCHLEVEL = 4
SUBLEVEL = 21
EXTRAVERSION = -27.0.2.EL
6. # make dep
7. # make moles SUBDIRS=fs/ntfs
8. # mkdir /lib/moels/2.4.21-27.0.2.EL/kernel/fs/ntfs
9. # cp -f fs/ntfs/*.o /lib/moels/2.4.21-27.0.2.EL/kernel/fs/ntfs/
10. # depmod -a
11. # modprobe ntfs
12. # lsmod
确保有ntfs在里面,更多内容请查看《Linux就该这么学》。