Chinaunix首页 | 论坛 | 博客
  • 博客访问: 3000720
  • 博文数量: 82
  • 博客积分: 2010
  • 博客等级: 大尉
  • 技术积分: 880
  • 用 户 组: 普通用户
  • 注册时间: 2005-03-14 00:01
文章分类

全部博文(82)

文章存档

2014年(1)

2011年(1)

2009年(8)

2008年(11)

2007年(13)

2006年(26)

2005年(22)

我的朋友

分类: LINUX

2008-06-30 17:11:18

在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) |
给主人留下些什么吧!~~