发布时间:2014-03-16 12:08:05
http://blog.chinaunix.net/uid-26963688-id-3268312.html开发环境: Ubuntu 12.04 LTS开发包:skyeye-1.3.3_testsuite_rel.tar.gz注:skyeye-1.3.3的安装见本博客http://blog.chinaunix.net/space.php?uid=26963688&do=blog&id=3267351帖子测试步骤:1. 解压skyeye-1.3.3_testsu.........【阅读全文】
发布时间:2014-02-16 17:03:29
http://www.myexception.cn/other/692874.html关于内核中 EXPORT_SYMBOL 导出变量的实例在内核中,可以通过这两个宏将变量导出,供其他模块使用:EXPORT_SYMBOL();EXPORT_SYMBOL_GPL(); 实例:hello.c:/***********************************************************************@@ 函数.........【阅读全文】
发布时间:2014-02-16 16:57:38
http://cjhust.blog.163.com/blog/static/175827157201011328596671、代码—helloworld.c#include <linux/init.h>#include <linux/kernel.h> #include <linux/module.h>static int hello_init(void){ printk("Hello! This is the helloworld module!\n");  .........【阅读全文】
发布时间:2014-02-16 16:35:20
在ubuntu12.04上完成内核编译1.apt-cache search --names-only Linux-source2.apt-get install Linux-source-3.2.03.make config4.make5.make modules6.make modules_install7.make install8.reboot......【阅读全文】
发布时间:2014-01-23 20:39:52
http://cnblogs.com/itech/archive/2009/08/10/1542945.html一、什么是rsync rsync,remote synchronize顾名思意就知道它是一款实现远程同步功能的软件,它在同步文件的同时,可以保持原来文件的权限、时间、软硬链接等附加信息。 rsync是用 “rsync 算法”提供了一个客户机和远程文件服务器的文件同步的快速方.........【阅读全文】