[Linux] Linux啟動檔案grub.conf

tolilong發表於2016-03-13
BIOS->Bootloader-->Kernel-->init-->service-->login-->bash

1.Bootloader啟動kernel透過/boot/grub/grub.conf
       root(hd0,0)
       kernel /vmlinuz-2.6.32-358.el6.x86_64 ro root=/dev/sda1 
       initrd /initramfs-2.6.32-358.el6.x86_64.img

[root@oracle ~]# more /boot/grub/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/mapper/vg_oracle-lv_root
#          initrd /initrd-[generic-]version.img
#boot=/dev/sda
default=0                          ---預設情況下,找的是第一個title
timeout=5                          ---設定5s的選擇時間
splashimage=(hd0,0)/grub/splash.xpm.gz           --載入的時候紅色按鈕
hiddenmenu                                       --隱藏title選項
password --md5 xxxxxxxxxxxxxxxxxxxxxxxxxx        
title Red Hat Enterprise Linux (2.6.32-358.el6.x86_64)
        root (hd0,0)
        kernel /vmlinuz-2.6.32-358.el6.x86_64 ro root=/dev/mapper/vg_oracle-lv_root rd_NO_LUKS LANG=en_US.UTF-8 rd_LVM_LV=vg_oracle/lv_root rd_NO_MD rd_LVM_LV=vg_oracle/lv_swap SYSFONT=latarc
yrheb-sun16 crashkernel=128M  KEYBOARDTYPE=pc KEYTABLE=us rd_NO_DM rhgb quiet
        initrd /initramfs-2.6.32-358.el6.x86_64.img


title linux safe mode
        root (hd0,0)
        kernel /vmlinuz-2.6.32-358.el6.x86_64 ro root=LABEL=/ vga=0x314 selinux=off 4       --4表示safe mode
        initrd /initramfs-2.6.32-358.el6.x86_64.img

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/24237320/viewspace-2056546/,如需轉載,請註明出處,否則將追究法律責任。

相關文章