发布时间:2015-01-15 12:11:18
现采取的措施是 在loader加载kernel的同时 也加载initial RAM Disk ==initrd 到内存中。initrd在一般命名为/boot/initrd(14M) 其作用是挂载内存的虚拟文件系统,kernel根据该虚拟文件系统加载硬盘等驱动程序,挂载根目录,最终完成其功能模块的加载。至此内核全部被加载到内存中,并常驻内存。.........【阅读全文】
发布时间:2015-01-15 10:49:02
一次shell中seq的处理 背景:用要shell 提取 文件中内容,文件名是用序列号如下生成,文件差不多有将近400多w个 如下: www.ahlinux.com 原始脚本#! /bin/sh#str1=""#filecount=`ls -l /root/gjj | wc -l | awk '{print $1}'`#echo $filecoun.........【阅读全文】
发布时间:2015-01-14 13:54:49
"This is a statement"使用 C++ 将这个字符串分割成四个子字符串: "This", "is", "a", "statement"?超级简略版cpp#include <iostream>using std::cout;#include <iterator>using std::istream_iterator; using std::ostream_iterator;#include <string>using std::string;#include <sstream>using std::.........【阅读全文】
发布时间:2015-01-14 13:48:23
#include <time.h>main(){time_t timep;time (&timep);printf(“%s”,asctime(gmtime(&timep)));}#include<time.h>main(){time_t timep;time (&timep);printf(“%s”,ctime(&timep));}#include<sys/time.h>#include<unistd.h>main(){struct timeval tv;struct timezone tz;gettimeofda.........【阅读全文】