Grub.conf kernel field boot messages verbosity configuration

 
Thread Tools Search this Thread
Operating Systems Linux Red Hat Grub.conf kernel field boot messages verbosity configuration
# 1  
Old 12-03-2013
Grub.conf kernel field boot messages verbosity configuration

I am trying to understand what are the differences of boot messages verbosity levels for the kernel field in grub.conf

From my research, there appear to be three levels:
quiet
verbose
debug

I have also found documents that specify removing quiet from the kernel field. If this is done, is there a fourth default level or does the messaging level default to verbose or debug?
# 2  
Old 12-03-2013
quiet and debug are Linux kernel command line parameters. They are not specific to GRUB.

See https://www.kernel.org/doc/Documenta...parameters.txt

quiet just disables most kernel log messages. Removing quiet reverts level of kernel log messages back to default.

verbose is a hack on some Linux distributions. If present on the kernel command line, one of the initialization files - such as /etc/rc.sysinit, or /etc/rc.d/rc.sysinit - does something like the following:
Code:
if /bin/grep -q " verbose" /proc/cmdline; then /bin/dmesg -n 8; fi

These 2 Users Gave Thanks to fpmurphy For This Post:
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

How to specify local boot up disk in CD boot Grub?

Hi Solaris 10 Experts, I am wondering what is the correct syntax to edit in Grub when trying to specify the local ZFS boot disk while booting up from a Solaris 10 x86 64bits DVD installation disk. In other word, I try to boot up from local disk without removing the Solaris installation disk... (0 Replies)
Discussion started by: gjackson123
0 Replies

2. Linux

Unload kernel module at boot time (Debian Wheezy 7.2, 3.2.0-4-686-pae kernel)

Hi everyone, I am trying to prevent the ehci_hcd kernel module to load at boot time. Here's what I've tried so far: 1) Add the following line to /etc/modprobe.d/blacklist.conf (as suggested here): 2) Blacklisted the module by adding the following string to 3) Tried to blacklist the module... (0 Replies)
Discussion started by: gacanepa
0 Replies

3. Red Hat

Restore grub.conf file

Hi guys, I will truly appreciate your help with this issue. If you do not have a backup copy of your grub.conf file, and for some reason the file got damaged or missing, how will you go about restoring it? Thanks for your kind assistance. (3 Replies)
Discussion started by: cjashu
3 Replies

4. UNIX for Dummies Questions & Answers

"/boot/grub/grub.conf" VS "/etc/grub.conf"

can someone please explain me the difference between these two files: "/boot/grub/grub.conf" and "/etc/grub.conf" .. (7 Replies)
Discussion started by: stunn3r
7 Replies

5. Red Hat

Can we specify which grub.conf to use in grub-install.

Hi, Can we specify which grub.conf to use while installing grub on RHEL. We are working on application which requires different grub configurations needed, depending on certain criteria we need to update grub with correct grub.conf. Can we use grub-install for this purpose? (4 Replies)
Discussion started by: successlin
4 Replies

6. Solaris

Belenix: Where is the grub configuration?

Hello, I am new to solaris, just installed the latest beleniX-Distro on hd. Works fine so far, but where is the grub configuration, I want to add my Linuxsystem to it. I found /boot/grub/menu.lst.detailed, this seems to be the version from the LiveCD, with many entries, when I boot the box, I have... (4 Replies)
Discussion started by: peng1967
4 Replies

7. Red Hat

grub.conf

i have installed rhel5 quite many times....... when i see grub.conf after installation, somtimes "kernel /boot/vmlinuz-2.6.18-8.el5 ro=LABEL=/ rhgb quiet" will be there or "kernel /boot/vmlinuz-2.6.18-8.el5 ro=LABEL=/1 rhgb quiet" will be there................ what is the significance of label=/... (1 Reply)
Discussion started by: sagar_md
1 Replies

8. Linux

Grub.Conf

Hi, During the Initial startup of the Linux machine. Grub.conf has a entry to mount the root partition as read only after the initialistation of the Kernel. Is there any specific reason for this or the root partition can be made to mounted with read write options. Regards Arun (1 Reply)
Discussion started by: Arun.Kakarla
1 Replies

9. Red Hat

linux will not boot, boot to grub prompt

my redhat 9 will not boot. We had a power failure and when the power came back, my redhat linux will not boot. The machine come up to grub prompt. I tried the following from grub prompt root (hd0, then press tab key partition num:0 filesystem type unknown, partition type 0x83... (7 Replies)
Discussion started by: hassan2
7 Replies
Login or Register to Ask a Question