这个系统吧比较纯净,APT包管理相当舒服比yum 还舒服!
root@houzaicun:/home# apt-get install lrzsz #我用的XSHELL 工具 为了方便直接扔包!
首先就apache吧
1安装编译\工程构建\调试工具
//*
* 说明:
* build-essential: 基本编译环境 (gcc, g++, libc, make等)
* autoconf: 自动配置工具
* automake: make相关
* gdb: 调试工具
*//
#apt-get install build-essential
#apt-get install autoconf
#apt-get install automake
#apt-get install gdb
root@houzaicun:/home# apt-get install build-essential #只安装他就可以了!
root@houzaicun:/home# apt-get install make 安装make 工具 为什么我说他纯净了。
root@houzaicun:/home# tar -zxvf httpd-2.2.11.tar.gz
root@houzaicun:/home# cd httpd-2.2.11/