IOZONE安装1.下载:http://www.iozone.org/使用版本为:iozone3_4142.解压:tarxvfiozone3_414.tar3.进入解压后的目录cdiozone3_414/src/current4.安装makelinux-AMD64(直接执行make有帮助选项,选择版本)安装IOZONE需要以下:gcc、make(必须安装不然有下面的报错)5、进入ioz..
分类:
其他好文 时间:
2014-05-27 03:32:36
阅读次数:
418
------源程序的编译安装首先要经过简单的编译才能安装,编译又依赖编译平台和gcc编译器但是gcc有它的局限性,所以后来就用make代替了,make编译时也是通过调用gcc来完成编译的,但是make又依赖文件makefile,makefile又是通过脚本configure和文件makefile.in生成的autoconf命令..
分类:
其他好文 时间:
2014-05-27 03:17:36
阅读次数:
231
在 Makefile 中经常会用到一些内置的标准变量。下面说明:1. MAKE_VERSIONmake
命令的版本号,也就是执行 make -v 时看到的版本号。2. CURDIR当前的工作目录,一般的就是 Makefile 所在的目录。确切的说,应该是 make
执行时此进程所在目录。如果在 ma...
分类:
其他好文 时间:
2014-05-24 06:08:57
阅读次数:
260
This list summarizes the top 10 mistakes that
Java developers frequently make.#1. Convert Array to ArrayListTo convert an
array to anArrayList, develo...
分类:
编程语言 时间:
2014-05-23 22:00:21
阅读次数:
668
W. Richard Stevens的主页: 源代码下载 >>
~/Downloads/unpv22e.tar.gz;1 tar -xzfv unpv22e.tar.gz2 cd unpv22e3 ./configure4
cd lib5 make make编译失败,因为需要对两个文件修改,un.....
分类:
其他好文 时间:
2014-05-23 09:22:50
阅读次数:
288
终于把bochs和gdb连起来了,下面描述下步骤以作记录。
1.安装bochs
前面有篇文章介绍了bochs源码编译安装过程,这里安装也非常相似,只是命令稍微有些不同
./configure --enable-gdb-stub
make
make install
2.下载调试映像
http://oldlinux.org/Linux.old/bochs/linux-0.11-gdb-r...
分类:
数据库 时间:
2014-05-22 11:51:56
阅读次数:
341
import cv2
import numpy
import os
# Make an array of 120,000 random bytes.
randomByteArray = bytearray(os.urandom(120000))
flatNumpyArray = numpy.array(randomByteArray)
# Convert the array to make a ...
分类:
编程语言 时间:
2014-05-22 08:41:08
阅读次数:
353
Webbench是一个非常简单的压力测试工具,Webbench最多可以模拟3万个并发连接去测试网站的负载能力。
(1)Webbench安装
wget http://www.phpddt.com/soft/linux/webbench-1.5.tar.gz
tar zxvf webbench-1.5.tar.gz
cd webbench-1.5
make
make install...
分类:
Web程序 时间:
2014-05-20 15:29:32
阅读次数:
357
Problem Description
As we know, Big Number is always troublesome. But it's really important in our ACM. And today, your task is to write a program to calculate A mod B.
To make the problem easie...
分类:
其他好文 时间:
2014-05-20 14:42:07
阅读次数:
324
http://pan.baidu.com/s/1ntqLA7v其中是我总结生成的一些文档,以便于理解当我们输入make
uImage后,系统是怎么一步一步生成uImage的,我采用的是逆向分析的方法。Linux内核的编译结构还是挺复杂的,我分析的还不到位,文档还有欠缺。下面是缩略图,在共享的目录中有...
分类:
系统相关 时间:
2014-05-20 12:31:45
阅读次数:
425