linux 安装nginx服务部署问题,新手,不知道怎么样处理这个问题

图片说明
应该如何处理这个问题,大神能帮我分析一下吗?,我没有解决的思路,难道是gcc编译器没有安装,那么怎么样确认是否有安装呢?

gcc -v
试一下能否输出版本号。

2 编译nginx 出现 make: *** No rule to make target build', needed bydefault'. Stop.

伪静态模块需要pcre库,先装上。

安装步骤如下:

tar zxvf pcre-7.9.tar.gz
cd pcre-7.9/
./configure
make && make install

然后:

./configure --user=web --group=web --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_gzip_static_module //注意用户
make && make install

你安装Nginx之前需要先安装PCRE和ZLIB库,然后再配置,让Nginx编译的时候能够找到