一、安装ext3文件系统(以redhat 7.1为例) 首先下载ext3-2.4-0.9.6-248.gz和linux-2.4.8.tar.gz并把它们拷贝到/usr/src/目录下. 你可能要下载最新版的util-linux(http://www.kernel.org/pub/linux/utils/util-linux/)和e2fsprogs (http://e2fsprogs.sourceforge.net/) 要确保e2fsprogs的版本>1.22,redhat 7.1也需要升级.怕麻烦的可下载redhat 7.2b的相应rpm包e2fsprogs-1.22-3.i386.rpm和util-linux-2.11f-5.i386.rpm rpm -Uhv e2fsprogs-1.22-3.i386.rpm rpm -Uhv util-linux-2.11f-5.i386.rpm tar zxvf linux-2.4.8.tar.gz mv kernel linux-2.4.8 rm linux-2.4 ln -s linux-2.4.8 linux-2.4 cd /usr/src/linux-2.4 gunzip < ../ext3-2.4-0.9.6-248.gz patch -p1 make mproper make menuconfig(在文件系统栏目中选上ext3,作为模块也可以.再选上"JBD debugging support"项,如果出错的话,可提供有用的信息;通常不要选上"Buffer head tracing",因为这样的话会使用大量的内存.) make dep make clean make bzImage make modules make modules-install cp System.map /boot/System.map-2.4.8 cp arch.i386/boot/bzImage /boot/vmlinuz-2.4.8 cd /boot rm System.map ln -s System.map-2.4.8 System.map vi /etc/lilo.conf lilo reboot