printk信息打印到指定文件 终端 网络

有的时候调试内核程序,经常要将信息打印到其他地方如指定文件或终端还有网络,  网络的话dreanice版主写过个netconsole我这里就不说了...

打印到文件:
   
  1. #include <linux/kernel.h>
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/fs.h>
  5. #include <linux/string.h>
  6. #include <linux/mm.h>
  7. #include <linux/syscalls.h>
  8. #include <asm/unistd.h>
  9. #include <asm/uaccess.h>

  10. #define MY_FILE "/root/LogFile"

  11. char buf[128];
  12. struct file *file = NULL;



  13. static int __init init(void)
  14. {
  15.         mm_segment_t old_fs;
  16.         printk("Hello, I'm the module that intends to write messages to file.\n");


  17.         if(file == NULL)
  18.                 file = filp_open(MY_FILE, O_RDWR | O_APPEND | O_CREAT, 0644);
  19.         if (IS_ERR(file)) {
  20.                 printk("error occured while opening file %s, exiting...\n", MY_FILE);
  21.                 return 0;
  22.         }

  23.         sprintf(buf,"%s", "The Messages.");

  24.         old_fs = get_fs();
  25.         set_fs(KERNEL_DS);
  26.         file->f_op->write(file, (char *)buf, sizeof(buf), &file->f_pos);
  27.         set_fs(old_fs);


  28.         return 0;
  29. }

  30. static void __exit fini(void)
  31. {
  32.         if(file != NULL)
  33.                 filp_close(file, NULL);
  34. }

  35. module_init(init);
  36. module_exit(fini);
  37. MODULE_LICENSE("GPL");
复制代码



打印到终端:

  1. #include <linux/kernel.h>
  2. #include <linux/module.h>
  3. #include <linux/init.h>
  4. #include <linux/sched.h>
  5. #include <linux/tty.h>
  6. MODULE_LICENSE("GPL");
  7. MODULE_AUTHOR("mq110");
  8. static void print_string(char *str)
  9. {
  10.     struct tty_struct *my_tty;
  11.     my_tty = current->signal->tty;
  12.     if (my_tty != NULL)
  13.     {
  14.         my_tty->driver->write(my_tty,str,strlen(str));
  15.         my_tty->driver->write(my_tty,"\015\013",2);
  16.     }
  17. }
  18. static int __init print_string_init(void)
  19. {
  20.     print_string("Hello world!");
  21.     return 0;
  22. }
  23. static void __exit print_string_exit(void)
  24. {
  25.     print_string("Goodbye world!");
  26. }
  27. module_init(print_string_init);
  28. module_exit(print_string_exit);
复制代码



3.

修改一下/etc/syslog.conf 文件
#kern.*       /dev/console

你打印的东西可能是某个级别的信息。比如说debug,这用printk 可以控制 。
那么就写程
kern.debug /var/log/kern_debug.log

-------------------------
printk(KERN_ALERT "Hello, world\n"); 
对应
/etc/syslog.conf 中的
kern.alert                      /kernel.txt

实验成功,修改后要执行
server syslogd restart 重启日志服务。
此方法等于用日志服务帮你做这个事情。该信息用
dmesg 命令也可以看到。

代码在Centos5.3   2.6.18上测试过了
### 配置和查看Linux系统中的串口打印输出 #### 修改内核命令行参数以启用串口输出 为了使 Linux 系统能够通过串口发送调试信息和其他消息,在启动加载器(如 GRUB)中编辑内核命令行是非常重要的。这通常涉及到向 `cmdline` 添加特定选项,比如 `console=ttyS0,115200n8` 来指定使用第一个串行端口 (ttyS0) 并设定波特率为 115200bps[^1]。 对于基于 Android 的设备,默认情况下可能不会开启全部级别的调试信息;可以通过调整 `/proc/sys/kernel/printk` 文件的内容来改变这一行为,从而允许更多的诊断数据被记录下来并经由串口传输出去。 #### 设置标准I/O重定向至COM端口 为了让所有的终端会话也经过选定的串行接口进行通信,则需进一步更改几个配置文件: - **GRUB 菜单** (`/etc/default/grub`) 中加入 `console=tty0 console=ttyS0,115200n8` 参数; - 更新初始化表格 (`/etc/inittab`) ,确保存在类似如下条目:`T0:23:respawn:/sbin/getty -L ttyS0 115200 vt100` - 编辑安全TTY列表 (`/etc/securetty`) 加入 `ttyS0` 行项[^2] 完成上述改动之后重启计算机,这样即使没有图形界面或网络连接也可以利用物理连接到 COM 口上的硬件读取控制台输出了。 #### 使用minicom或其他工具接收日志 一旦完成了必要的操作系统层面的设置工作,就可以借助像 minicom 这样的应用程序监听来自目标机器的数据流。安装方法取决于所使用的发行版,但对于大多数现代 GNU/Linux 发行版本而言,只需执行简单的包管理指令即可获取该软件包。例如,在 Debian 或 Ubuntu 上可以运行下面这条命令来进行安装: ```bash sudo apt-get install minicom ``` 启动 Minicom 前记得先对其进行适当配置,使之匹配源主机上定义好的串行参数,包括但不限于比特率、奇偶校验位等细节[^4]。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值