linux中LILO及GRUB配置实例
作者 佚名技术
来源 Linux系统
浏览
发布时间 2012-05-15
1.配置LILO是通过编辑/etc/lilo.conf(也可能是/etc/lilo.conf.anaconda文件)
使用cat命令打开如下:
[root@localhost etc]# cat lilo.conf.anaconda prompt timeout=50 default=linux boot=/dev/hda map=/boot/map install=/boot/boot.b message=/boot/message linear image=/boot/vmlinuz-2.4.20-8 label=linux initrd=/boot/initrd-2.4.20-8.img read-only append="root=LABEL=/" other=/dev/hda1 optional label=DOS 解释如下: prompt timeout=50 default=linux 这三行表示系统启动时将会显示一个lilo提示信息,并等待5秒钟,注意timeout的单位是0.1秒.如果5秒钟之内没有输入系统名字那么将使用默认引导deafault=limux,引导标号为linux的系统. boot=/dev/hda 这表示启动盘是第一张ide硬盘(这个原因,通常不能从软盘来启动linux) install=/boot/boot.b 表示要将/boot/boot.b文件内容写到引导记录中.该文件在安装linux时已经创建. 接下来定义的是各个引导项目.image=/boot/vmlinuz-2.4.20-8这行定义了启动时使用的内核映像,label=linux定义了这个启动选择项名称是linux.是linux,然后是dos(windows),笔者机器上正是安装了linux和windows xp两个系统. 当完成了上述配置工作后,为了使它的设置生效,需要执行/sbin/lilo命令. 2.配置GRUB是通过编辑/boot/grub/grub.conf文件实现的,实例如下 [root@localhost grub]# cat grub.conf # grub.conf generated by anaconda # # Note that you do not have to rerun grub after making changes to this file # NOTICE: You have a /boot partition. This means that # all kernel and initrd paths are relative to /boot/, eg. # root (hd0,1) # kernel /vmlinuz-version ro root=/dev/hda3 # initrd /initrd-version.img #boot=/dev/hda default=0 timeout=10 splashimage=(hd0,1)/grub/splash.xpm.gz title Red Hat Linux (2.4.20-8) root (hd0,1) kernel /vmlinuz-2.4.20-8 ro root=LABEL=/ initrd /initrd-2.4.20-8.img title DOS rootnoverify (hd0,0) chainloader 1 [root@localhost grub]# |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
上一篇: 远程管理Linux服务器经验谈下一篇: linux下FTP服务器的安装
关于linux中LILO及GRUB配置实例的所有评论