天行健,君子以自强不息;地势坤,君子以厚德载物
发布时间:2018-01-06 18:23:53
如何实现部分编译:1、只编译某子目录下的相关代码:make dir/make arch/make drivers/net/2、只编译部分模块make M=drivers/net/3、只编译某一模块如:make drivers/net/pcnet32.ko4、将编译完成的结果放置于别的目录中make O=/tmp/kernel5、cross compile:交叉编译make ARCH=脚本编译知识点:1、变量中字.........【阅读全文】
发布时间:2018-01-06 18:22:20
查看本机硬件信息:1、[root@localhost ~]# cat /proc/cpuinfo #显示CPU信息#2、[root@localhost ~]# lsusb #显示USB接口信息#3、[root@localhost ~]# lspci4、[root@localhost ~]# hal-device 编译内核过程:1、配置,常用命令: make menuconfig make gcon.........【阅读全文】
发布时间:2018-01-06 18:18:42
bash脚本编程之十二(Linux系统裁剪之二)-系统函数库系统启动流程:POST-->BIOS(boot sequence)-->BootLoader(MBR) -->Kernel(initrd,initramfs(redhat6))-->init(/etc/inittab,upstart(RHEL6))注:upstart包含:/etc/inittab和/etc/init/*.conf /etc/in.........【阅读全文】