[20170731]rhgb表示什么.txt
--//一般我安装好linux服务器,我个性习惯修改grub.conf文件
# ls -l /boot/grub/grub.conf
-rw------- 1 root root 781 2014-08-29 21:38:28 /boot/grub/grub.conf
# ls -l /etc/grub.conf
lrwxrwxrwx 1 root root 22 2014-08-29 21:38:28 /etc/grub.conf -> ../boot/grub/grub.conf
--//目录etc目录下是软链接文件,删除里面的rhgb quiet,或者注解掉,另外写一行没有rhgb quiet.
--//同事问我为什么,很简单这样取消后,启动可以看到更多的信息,至于rhgb quiet表示什么,自己从来不探究.
--//例子:
default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Oracle Linux Server (2.6.39-300.26.1.el5uek)
root (hd0,0)
# kernel /vmlinuz-2.6.39-300.26.1.el5uek ro root=LABEL=/ rhgb quiet
kernel /vmlinuz-2.6.39-300.26.1.el5uek ro root=LABEL=/
initrd /initrd-2.6.39-300.26.1.el5uek.img
quiet 相对好理解一点,hides the majority of boot messages before rhgb starts.
rhgb 什么意思呢?
--//实际上redhat graphical boot的缩写.表示:
--//redhat graphical boot - This is a GUI mode booting screen with most of the information hidden.
--//仅仅做一个记录,以免别人问起答不上来...^_^.