linux 加载hello模块
时间:2011-12-27
来源:互联网
1、hello-1.c
/*
* hello-1.c - The simplest kernel module.
*/
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_ALERT */
int init_module(void)
{
printk("<1>Hello world 1.\n");
/*
* A non 0 return means init_module failed; module can't be loaded.
*/
return 0;
}
void cleanup_module(void)
{
printk(KERN_ALERT "Goodbye world 1.\n");
}
2、Makefile
obj-m := hello-1.o
3、编译
make -C /lib/modules/2.6.27.5-117.fc10.i686/build M=/home/root/hello modules
4、加载模块
insmod ./hello-1.ko
cat /proc/modules 查看是否已经被加载
5、卸载模块
rmmod hello-1.ko
cat /var/log/messages 查看日志内容
/*
* hello-1.c - The simplest kernel module.
*/
#include <linux/module.h> /* Needed by all modules */
#include <linux/kernel.h> /* Needed for KERN_ALERT */
int init_module(void)
{
printk("<1>Hello world 1.\n");
/*
* A non 0 return means init_module failed; module can't be loaded.
*/
return 0;
}
void cleanup_module(void)
{
printk(KERN_ALERT "Goodbye world 1.\n");
}
2、Makefile
obj-m := hello-1.o
3、编译
make -C /lib/modules/2.6.27.5-117.fc10.i686/build M=/home/root/hello modules
4、加载模块
insmod ./hello-1.ko
cat /proc/modules 查看是否已经被加载
5、卸载模块
rmmod hello-1.ko
cat /var/log/messages 查看日志内容
作者: linhai0819 发布时间: 2011-12-27
看不懂
作者: Uertbu 发布时间: 2011-12-27
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28