CentOS下MySQL数据库服务器的构建方法
用root登陆,安装mysql
yum -y install mysql-server ← 安装MySQLSetting up Install Process
yum -y install php-mysql ← 安装php-mysqlSetting up Install Process
然后,配置MySQL
http://www.91ri.org/2835.html
gvim/ctags安装,配置和使用:
yum -y install gvim
yum -y install ctags
yum install gcc-c++
yum install gcc-g77
yum install flex autoconf zlib curl zlib-devel curl-devel bzip2 bzip2-devel ncurses-devel libjpeg-devel libpng-devel libtiff-devel freetype-devel pam-devel
yum -y install gcc gcc-c autoconf automake
yum groupinstall -y "Development Tools" (many small tools, bison etc)
http://blog.csdn.net/fbfsber008/article/details/7044723
QT 安装
http://blog.chinaunix.net/uid-26019596-id-3478592.html
linux测试工具
service httpd status
service httpd start
ab -c 1 -n 10000 http://127.0.0.1/
httperf --hog --server=127.0.0.1 --uri=/forum.php --num-conns=3000
http://www.bitronictech.net/knowledgebase/244/Install-and-Run-UnixBench-on-CentOS-or-Debian-VPS.html
This tutorial will cover how to install and run UnixBench on a CentOS Linux VPS or Debian Linux VPS. UnixBench is a popular server benchmarking tool. UnixBench is the original BYTE UNIX benchmark suite, updated and revised by many people over the years.
- the performance of your system when running a single task
- the performance of your system when running multiple tasks
- the gain from your system’s implementation of parallel processing
# yum install gcc gcc-c++ make libXext-devel# yum groupinstall "Development Tools"# yum install libX11-devel mesa-libGL-devel perl-Time-HiRes# wget -c http://byte-unixbench.googlecode.com/files/unixbench-5.1.3.tgz# tar xvzf unixbench-5.1.3.tgz# cd unixbench-5.1.3# make# ./Run
# apt-get install libx11-dev libgl1-mesa-dev libxext-dev perl perl-modules make# wget http://byte-unixbench.googlecode.com/files/unixbench-5.1.3.tgz# tar xvf unixbench-5.1.3.tgz# cd unixbench-5.1.3# ./Run