操作系统是一组调度管理软件,控制计算机所有活动,管理硬件设备。操作系统内核和模块提供相关API和lib由外部调用。出于安全性考虑,用户不能直接调用kernel的相关接口,而是通过shell工具进行交换。用户在shell中输入相关指令,shell根据指令调用系统内核的相关功能。 shell最早出...
分类:
其他好文 时间:
2014-06-19 00:32:13
阅读次数:
320
/** linux/kernel/vsprintf.c** Copyright (C) 1991, 1992 Linus Torvalds*//* vsprintf.c -- Lars Wirzenius & Linus Torvalds. *//** Wirzenius wrote this po...
分类:
其他好文 时间:
2014-06-18 17:28:50
阅读次数:
250
碰到需要调用操作系统shell命令的时候,Ruby为我们提供了六种完成任务的方法:1.Exec方法:Kernel#exec方法通过调用指定的命令取代当前进程: 例子: $ irb >> exec 'echo "hello $HOSTNAME"' hello nate.local $值得注意的是,ex...
分类:
其他好文 时间:
2014-06-18 16:00:48
阅读次数:
214
A monolithic kernel is a kernel where all services (file system, VFS, device drivers, etc) as well as core functionality (scheduling, memory allocatio...
分类:
其他好文 时间:
2014-06-18 12:45:23
阅读次数:
361
/** linux/kernel/printk.c** Copyright (C) 1991, 1992 Linus Torvalds** Modified to make sys_syslog() more flexible: added commands to* return the last ...
分类:
其他好文 时间:
2014-06-17 21:10:57
阅读次数:
275
自己VM虚拟机里安装redhat linux root密码忘了,刚开始想重新安装,但是后来想到还有linux有一个single模式,使用single可以直接进入字符界面,然后修改;启动vm虚拟机,启动linux系统;进入linux启动界面之后按e进入如下界面;按选择kernel /vmlinuz-2...
分类:
系统相关 时间:
2014-06-17 13:19:06
阅读次数:
533
一、日志系统1、日志系统:syslog()信息详细程序:日志级别日志子系统:facility日志记录动作:ActionLinux上的日志系统:syslogsyslog-ng:syslog-ng作为syslog的替代工具,可以完全替代syslog的服务,并且通过定义规则,实现更好的过滤功能系统启动过程的日志:kernel-->物..
分类:
系统相关 时间:
2014-06-16 18:21:51
阅读次数:
306
https://www.kernel.org/doc/Documentation/kbuild/kconfig-language.txtIntroduction------------The configuration database is a collection of configuratio...
分类:
系统相关 时间:
2014-06-15 23:22:07
阅读次数:
313
Linux 的编译使用 GNU make 工具来检查整个系统的文件和调用 gcc 工具以及脚本完成编译源代码生成 image 等操作。要了解整个编译系统,我们首先要了解 Linux 内核的 Makefile 文件。
Linux 的 编译系统包括 5 个部分
Makefile
顶层的 Makefile 文件
.config
内核配置文件
arch/$(ARCH...
分类:
系统相关 时间:
2014-06-15 16:05:05
阅读次数:
351
编译环境:windows8.1Anaconda python2.7Visual studio 2012CUDA6.0Pthread for windowsIntel Math Kernel Librarycuda-convnet 原始文件下载地址:https://github.com/dnouri/...