在vmware 6中安装ubuntu server 7.10,安装后第一次启动遇到
PANIC:cpu too old for the kernel
我的CPU是迅驰1,不算太老吧.上网搜索后,得知虚拟机没设定支持PAE,而ubuntu7.10内核编译的时候缺省情况下是增加了PAE选项的。解决办法:
1、用光盘启动后进入rescue模式,指定root分区
2 apt-get install linux-generic
3 重启后按ESC键进入GRUB菜单,选择generic内核即可启动成功
4 修改grub的启动设置.
据说此法在/boot和/root不在一个分区时不行.好在我是相同的编辑网络设置
sudo vim /etc/network/interfaces
把
auto eth0
iface eth0 inet dhcp
改成
auto eth0
iface eth0 inet static
address 192.168.1.30
netmask 255.255.255.0
network 192.168.1.0
broadcast 192.168.1.255
gateway 192.168.1.1
# dns-* options are implemented by the resolvconf package, if installed
dns-nameservers 61.236.159.99
# dns-search
重启网络
sudo /etc/init.d/networking restart
安装一些必需的软件
sudo apt-get install build-essential
提示要插入光盘,照提示就可以完成了.然后
sudo apt-get install linux-source-2.6.22
阅读(696) | 评论(0) | 转发(0) |