lkm

  • 网络内核模块(Loadable Kernel Modules);龙记;更多有关(Linux Kernel Module)

lkmlkm

lkm

内核模块(Loadable Kernel Modules)

从可加载内核模块(LKM)技术思想出发,基于LSM的安全模块—Linux入侵检测系统(LIDS),对传统Linux系统安全性进行了全面 …

龙记

龙记(LKM)标准模胚报价系统龙记(LKM)标准模胚报价系 大小:4.10MB | 更新时间:2010/11/24 龙记标准模胚的报价软件,有大水 …

更多有关(Linux Kernel Module)

Linux kernel module(LKM)管理module的alias 总线及其信息查看 使用wireshark了解HTTP的数据包 wireshark网络分析 还是跑 …

抗肝肾微粒体抗体(liver kidney microsome)

抗肝肾微粒体抗体(lkm)elisa kithuman liver kidney microsome autoantibody,lkm elisa kit 96t fa00431b 人抗肝素pf4复合物 …

抗肝肾微粒体抗体测定

抗肝肾微粒体抗体测定lkm)抗风疹病毒抗体(ruv) 抗促甲状腺素受体抗体(trab) 抗表皮基底膜抗体 巨噬细胞或白细胞移动 …

1
So, with that introduction to the basics of LKMs, let's dig in to see how modules get into the kernel and are managed internally. 了解LKM的基础知识之后,现在我们进一步探索模块是如何进入内核的,以及在内核内部是如何管理模块的。
2
Now let's move beyond this simple example and look at some of the kernel APIs that allow you to develop useful LKMs. 现在让我们暂时离开这个简单的例子,来看几个可以用来开发有用LKM的内核API。
3
An LKM has some fundamental differences from elements that compile directly into the kernel and also typical programs. LKM与直接编译到内核或典型程序的元素有根本区别。
4
It's even possible for an LKM to export new variables and functions that the kernel can use. LKM甚至可以导出内核使用的新变量和函数。
5
Loadable Kernel Module [LKM] is used to expand the kernel for adding new hardware or Filesystem without a system reboot. 可加载内核模块[龙记]用于扩大对没有系统添加新的硬件或文件系统重新引导内核。
6
But because an LKM can't resolve its symbols until it's loaded into the kernel, the LKM remains an ELF object. 由于必须将LKM加载到内核后LKM才能解析符号,所以LKM仍然是一个ELF对象。
7
The new naming convention helps to distinguish kernel objects (LKMs) from standard objects. 这个新的命名约定可以帮助将这些内核对象(LKM)与标准对象区分开来。
8
To build the LKM, use the make command as shown in Listing 4. 要编译LKM,请使用make命令,如清单4所示。
9
Listing 3 is a real LKM, albeit a simple one. 清单3尽管非常简单,但它却是一个真正的LKM。
10
LKMs are also a popular mechanism for device drivers and filesystems in the Linux kernel. LKM也是Linux内核中为设备驱动程序和文件系统使用的一种流行机制。