RED HAT ENTERSPRISE LINUX 5 grub启动文件

[root@localhost ~]#more /boot/grub/grub.conf
// 显示 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,0)
#          kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
#          initrd /initrd-version.img
#boot=/dev/sda
# 开始是注释说明信息
default=0
#default=0 表示默认启动第一个系统
timeout=5
#timeout 就是默认在启动选择界面停留的时间单位是秒。等待 5 秒自动进入默认操作系统
splashimage=(hd0,0)/grub/splash.xpm.gz
# 显示第一块硬盘的,第一个分区 /grub 目录下的启动背景界面( splash.xpm.gz
Hiddenmenu
# 隐藏的菜单
title Red Hat Enterprise Linux Server (2.6.18-128.el5)
# 标题红帽子企业版内核版本,启动后显示的信息
        root (hd0,0)
#root 启动文件所在位置
        kernel /vmlinuz-2.6.18-128.el5 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
#kernel 内核版本和内核所在位置
        initrd /initrd-2.6.18-128.el5.img
#initrd 内核镜像
[root@localhost ~]#cd /boot/grub
// 切换到 grub 目录
[root@localhost grub]#rm �Crf menu.lst
// 删除 grub.conf 软件接名 menu.lst
[root@localhost grub]#rm �Crf grub.conf
// 删除 grub.conf 系统启动文件
[root@localhost grub]#reboot
// 重启系统
grub>splashimage=(hd0,0)/grub/splash.xpm.gz
// 显示 grub 启动背景画面
grub>root (hd0,0)
//root 启动文件所在位置
grub>kernel /vmlinuz-2.6.18-128.el5 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
//kernel 内核版本和内核所在位置
grub>initrb /initrb-2.6.18-128.el5.img
//initrd 内核镜像的名字
grub>boot
// 执行 boot 启动红帽子
[root@localhost ~]#cd /boot/grub
// 切换到 grub 目录
[root@localhost grub]#vim grub.conf
// 打开编辑 grub.conf
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.18-128.el5)
        root (hd0,0)
        kernel /vmlinuz-2.6.18-128.el5 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
        initrd /initrd-2.6.18-128.el5.img
[root@localhost grub]#ln �Cs ./grub.conf menu.lst
// 建立一个 ./grub.conf 软连接名为 menu.lst ”./” 表示当前 grub 目录
[root@localhost grub]#ll
// 显示文件详细信息
[root@localhost grub]#reboot
// 重新启动系统
这样系统就没有阻碍的运行起来
 

你可能感兴趣的:(linux,职场,操作系统,休闲,启动文件)