码迷,mamicode.com
首页 >  
搜索关键字:kernel kill init    ( 35249个结果
初识Bash
操作系统是一组调度管理软件,控制计算机所有活动,管理硬件设备。操作系统内核和模块提供相关API和lib由外部调用。出于安全性考虑,用户不能直接调用kernel的相关接口,而是通过shell工具进行交换。用户在shell中输入相关指令,shell根据指令调用系统内核的相关功能。 shell最早出...
分类:其他好文   时间:2014-06-19 00:32:13    阅读次数:320
JavaScript Patterns 4.7 Init-Time Branching
When you know that a certain condition will not change throughout the life of the program, it makes sense to test the condition only once. Browser sni...
分类:编程语言   时间:2014-06-18 22:35:12    阅读次数:341
10.4.3 编程实例-太阳系动画
#include float fEarth = 2.0f; //地球绕太阳的旋转角度 float fMoon = 24.0f; //月球绕地球的旋转角度 void Init() { glEnable(GL_DEPTH_TEST); //启用深度测试 glClearColor(0.0f, 0.0f, ...
分类:其他好文   时间:2014-06-18 20:41:38    阅读次数:257
图的存储
#include#include#includeint k,h[110],mark;struct M{ int data; struct M *next;}*head[110];void init(){ int i; for(i = 0; i next = NULL; ...
分类:其他好文   时间:2014-06-17 00:58:16    阅读次数:315
acd The Game about KILL(和约瑟夫归则一样,归律)
Problem DescriptionTeacher HU and his 40 students were trapped by the brigands. To show their power, the head of the brigands want to select one peopl...
分类:其他好文   时间:2014-06-17 00:28:32    阅读次数:362
Python 实现摄像头功能
正确的程序如下所示: #! /usr/bin/env python # -*- coding: utf-8 -*-   from VideoCapture import Device import time import sys,pygame   pygame.init()   size = width,height = 620,485 speed = [2,2] blac...
分类:编程语言   时间:2014-06-16 23:10:24    阅读次数:568
Linux01-Linux日志系统syslog详解55
一、日志系统1、日志系统:syslog()信息详细程序:日志级别日志子系统:facility日志记录动作:ActionLinux上的日志系统:syslogsyslog-ng:syslog-ng作为syslog的替代工具,可以完全替代syslog的服务,并且通过定义规则,实现更好的过滤功能系统启动过程的日志:kernel-->物..
分类:系统相关   时间:2014-06-16 18:21:51    阅读次数:306
nfs 共享       portmap
nfs共享portmap要求1.将/root共享给192.168.10.20,可写、同步,允许客户机以root权限访问2.将/usr/src共享给192.168.10.0/24网段,可写、异步,所有用户身份都映射成nfsnobody3.访问测试,并自动挂载实现步骤:安装需要的软件包Yum–yinstallnfs-utilsprotmap二、/etc/init.d/..
分类:其他好文   时间:2014-06-16 17:28:31    阅读次数:306
nagios介绍及Server安装(二)
6)、启动相关服务[root@centreon~]#/etc/init.d/httpdstart [root@centreon~]#/etc/init.d/mysqldstart [root@centreon~]#mysqladmin-urootpassword‘111111‘ [root@centreon~]#/etc/init.d/ndo2dbstart7)、WEB界面安装http://192.168.100.187/centreon发现提示php-posix模块没..
分类:移动开发   时间:2014-06-16 15:11:56    阅读次数:288
UIViewController启动过程
初始化:第一种初始化方法:假如MainUIViewController类继承了UIViewController类,mainUIViewController是MainUIViewController的实例对象,当调用Init方法的时候【MainUIViewController *mainUIViewC...
分类:其他好文   时间:2014-06-14 15:41:46    阅读次数:219
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!