我运行以下命令:
$ cd /opt/mod_fastcgi-2.4.6
$ cp Makefile.AP2 Makefile
$ make top_dir=/etc/httpd
$ make install
我运行 make 时一直出现此错误:
-bash: make: command not found
到底是怎么回事?
答案1
呃,显然你还没有安装make
。
在 Ubuntu 上:sudo apt-get install build-essential
在 CentOS 上:sudo yum install make gcc gcc-c++