|
发表于 2005-6-6 23:11:03
|
显示全部楼层
1。 编辑/etc/conf.d/net 文件,根据你的情况修改ip和gw,然后rc-update add net.eth0 default
同时,要修改/etc/modules.autoload.d/kernel-2.6(如果你是2.4的内核修改kernel-2.4),加入e100(即你网卡的模块名),运行modules-update
2.需要修改内核使用framebuffer才能在文本模式下上高分辨率,坛子里有很多文章介绍了,不多说了,呵呵
3。贴出你的grub.conf,大家才好帮你判断错误,下面是我的grub.conf,你可以参考下
#
# Sample boot menu configuration file
#
# Boot automatically after 30 secs.
timeout 5
# By default, boot the first entry.
default 2
# Fallback to the second entry.
fallback 1
splashimage=(hd0,7)/boot/grub/splash.xpm.gz
# For booting GNU/Linux
title Gentoo2005
root (hd0,7)
kernel /boot/vmlinuz ro root=/dev/hda8 video=vesafb:ywrap,pmipal,1024x768-16@85 splash=silent,theme:livecd-2005.0 CONSOLE=/dev/tty1 quiet
#initrd /boot/splash-1024x768
# For booting Windows NT or Windows95
title WindowsXP
root (hd0,0)
makeactive
chainloader +1 |
|