当前位置: 技术问答>linux和unix
Linux的内核2.4.20和2.4.22区别大吗?
来源: 互联网 发布时间:2015-04-17
本文导语: 有什么具体的区别,能否说得具体些!谢谢 | Bear in mind that your module’s code has to be recompiled for each version of the kernel that it will be linked to. Each module defines a symbol called _ _modul...
有什么具体的区别,能否说得具体些!谢谢
|
Bear in mind that your module’s code has to be recompiled for each version of
the kernel that it will be linked to. Each module defines a symbol called
_ _module_ kernel_version, which insmod matches against the version number of
the current kernel.
so 2.4.20 symbol can not match 2.4.22
you can read ldd2 for details
the kernel that it will be linked to. Each module defines a symbol called
_ _module_ kernel_version, which insmod matches against the version number of
the current kernel.
so 2.4.20 symbol can not match 2.4.22
you can read ldd2 for details
|
自己上www.kernel.org里去看2.4.22的what's new.
|
区别不是很大,以版本2.4.18为例,2代表主版本号,4代表次版本号,18代表改动较小的末版本号。2.4.*的版本是同样的内核的,即Linux内核的主要模块没变。
Linux内核的主要模块(或组件)分以下几个部分:存储管理、CPU和进程管理、文件系统、设备管理和驱动、网络通信,以及系统的初始化(引导)、系统调用等。
Linux内核的主要模块(或组件)分以下几个部分:存储管理、CPU和进程管理、文件系统、设备管理和驱动、网络通信,以及系统的初始化(引导)、系统调用等。
|
对啊,到www.kernel.org里说得挺详细的了
|
内核版本号为偶数的是经过严格测试过的,奇数的为测试版本