Upgrade Kernel
我安装的这张 cd 上 kernel 的版本是 2.4.23, 不爽, 我升到 2.6.9 了. 用
# apt-get install kernel-image-2.6.9-...
本是最好的方法, 以后再更新 kernel, 就能象更新普通软件一样方便了. 可惜, 我试 了几次都没成功, 重起后无法正常启动系统.(要是你有好的经验, 可以交流交流 :-) 没有办法, 手动编译吧. 从 kernel.org 上下载 linux-2.6.9.tar.bz2 等相关文 件. 主要步骤:
1.更新, 安装必要相关工具, 库.
libncurses5-dev - Developer's libraries and docs for ncurses
module-init-tools - tools for managing Linux kernel modules
kernel-package - A utility for building Linux kernel related Debian packages.
2.menuconfig
# tar jxf linux-2.6.9.tar.bz2 -C /usr/src
# cd /usr/src/linux-2.6.9
# make menuconfig
cpu - Processor -> Processor Type -> 6xx/7xx/74xx/52xx/8260
net - Device Drivers -> Networking support -> Ethernet (10 or 100Mbit) -> Sun GEM support
usb - Device Drivers -> USB support -> EHCI HCD support, OHCI HCD support, UHCI HCD..., USB Mass Storage support
framebuffer support - Device Drivers -> Graphics support -> Console display driver support -> Framebuffer Console support
sound - Device Driver -> Sound -> Sound card support, alsa(sequence, mixer, pcm)
3.compile and install
# make-kpkg clean
# make-kpkg kernel_image
# cd ..
# dpkg -i kernel-image-2.6.9-...deb
reboot, good luck !
阅读(2068) | 评论(0) | 转发(0) |