zoukankan      html  css  js  c++  java
  • (OK) How can I show printk() message in konsole?


    http://stackoverflow.com/questions/27903915/how-can-i-show-printk-message-in-konsole


    The syntax of printk is

    printk ("log level" "message", <arguments>);
    

    kernel defines 8 log levels in the file printk.h

    #define KERN_EMERG "<0>" /* system is unusable*/
    #define KERN_ALERT "<1>" /* action must be taken immediately*/
    #define KERN_CRIT "<2>" /* critical conditions*/
    #define KERN_ERR "<3>" /* error conditions*/
    #define KERN_WARNING "<4>" /* warning conditions*/
    #define KERN_NOTICE "<5>" /* normal but significant condition*/
    #define KERN_INFO "<6>" /* informational*/
    #define KERN_DEBUG "<7>" /* debug-level messages*/
    

    Each log level corresponds to a number and the lower the number higher the importance of the message.

    The levels are useful in deciding what should be displayed to the user on the console and what should not be.

    Every console has log level called as the the console log level and any message with a log level number lesser than the console log level gets displayed on the console, and other messages which have a log level number higher or equal to the console log level are logged in the kernel log(kernel buffer) which can be looked into using the command "dmesg".

    The console loglevel can be found by looking into the file /proc/sys/kernel/printk

    $ cat /proc/sys/kernel/printk
    4 4 1 7
    

    The first number in the output is the console log level, the second is the default log level, third is the minimum log level and fourth is the maximum log level.

    Log level 4 corresponds to KERN_WARNING. Thus all the messages with log levels 3,2,1 and 0 will get displayed on the screen as well as logged and the messages with log level 4,5,6,7 only get logged and can be viewed using "dmesg".

    The console log level can be changed by writing into the proc entry

    $ echo "6" > /proc/sys/kernel/printk
    $ cat /proc/sys/kernel/printk
    6 4 1 7
    

    Now the console log level is set to 6, which is KERN_INFO.

    Here you want to print out every message so you should set your console level at highest number "8"

    echo "8" > /proc/sys/kernel/printk 
    tail -f /var/log/kern.log & 
    

    or

    cat /proc/kmsg & (Android Environment)
    

  • 相关阅读:
    一本通1621轻拍牛头
    2.23模拟赛
    一本通1618越狱
    P2280 [HNOI2003]激光炸弹
    P4513 小白逛公园
    P2165 [AHOI2009]飞行棋
    P1877 [HAOI2012]音量调节
    P2023 [AHOI2009]维护序列
    P2253 好一个一中腰鼓!
    P2434 [SDOI2005]区间
  • 原文地址:https://www.cnblogs.com/ztguang/p/12645653.html
Copyright © 2011-2022 走看看