当前位置: 首页 > 图文教程 > 操作系统 > Unix/Linux > LINUX系统下grub菜单的几个技巧

Unix/Linux
Creating a OpenBSD 3.5 bootable CD
解决Fatal error: Call to undefined function: preg_match()
[工具 使用 原创] ls可以是彩色的,df也可以是彩色的
ipfilter+squid配置实例
UNIX痛恨者手册
postfix+ldap+sasl2+courier-imap for freebsd完全ports
硬盘、分区引导和操作系统加载程序
Unix/Linux下的“魔法兔仔”, webmin
solaris10 apache2 的问题
解决启动DHCP客户端时,出现unknown 主机名称的方法
A1000的电池用完了会有什么严重后果
Solaris 2.6+Ultra5内置扬声器故障诊断实例
各种shell下文件名补全功能的使用
民工日记--- We sell dream
让你的终端同时支持中文和 PP 的背景(转载收藏)
民工日记 --不变的变化
配置Solaris上网
民工日记--不鼓励也不反对
Solaris Security Toolkit 4.2
民工日记--无奈

Unix/Linux 中的 LINUX系统下grub菜单的几个技巧


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2010-01-15   浏览: 115 ::
收藏到网摘: n/a

grub软件包的安装

1,安装rpm或者源码包

2,安装到mbr中

     *编写/boot/grub/grub.conf文件

     *grub-install  /dev/hda

制作grub启动盘(将自动载软盘上创建一个/boot目录)

mke2fs  /dev/fd0

mount /dev/fd0 /mnt/floppy

grub-install --root-directory=/mnt/floppy/'(fd0)'

利用grub引导盘恢复被覆盖的引导系统

安装windows在安装linux,grub可以很好的识别并启动windows,这个过程中grub并不能直接加载windows核心引导文件,而是调用windows自身的引导器boot.ini通常是windows所在分区的引导扇区,但是再次安装windows系统时,将重写mbr.这就造成了只能启动新安装的windows,而无法启动linux,因为grub本身就安装在mbr中,被新安装windows的引导覆盖了

grub>root                    (查看根)

     grub>find /boot/grub/grub.conf   (查看grub.conf在哪个分区)

     grub>root (hd0,0)

     grub>setup (hd0)               (把grub重新安装到hd0的mbr中)

grub配置文件说明

default saved 指定默认启动项为上次保存值

default 0  默认从第一个菜单启动

splashimage (hd0,0) /boot/grub/splash.xpm.gz  指定grub背景图片

timeout 10 指定菜单延迟的时间

title Red Hat linux  指定菜单的名称

   root (hd0,0)  设置grub的根设备 root为linux内核所在的分区

   kernel /boot/vmlinuz-2.4.20-8 ro root=LABEL=/  加载linux内核

   initrd /boot/initrd-2.4.20-8.img 使用initrd命令加载镜像文件

title winxp  定义windows启动菜单

   map (hd0) (hd1)  用map命令交换磁盘或分区在BIOS中的标志符,用于启动在第二个硬盘中的windows

   map (hd1) (hd0)

   root (hd1,0)    设置真实windows所在的分区为grub的根设备

   makeactive    设置根设备为活动分区(针对windows不能从非活动分区启动)

   chainloader+1  调用Windows分区的启动引导器来引导windows系统

savedeafult --> 保存当前启动项为默认启动菜单