问题1:
linux解压缩报错tar: Error is not recoverable: exiting now
tar -xjvf php-8.0.19.tar.gz
解决办法:
去掉z或j参数,使用 tar -xvf 解压正常
tar -xvf php-8.0.19.tar.gz
问题2:
Linux下解压.zip文件报错-bash:unzip: command not found
解决办法:
需安装zip,执行
yum install unzip zip
问题3:
linux编译文件报错configure: error: no acceptable C compiler found in $PATH
错误:在$PATH中找不到可接受的C编译器
解决办法:
安装C编辑器
yum install gcc -y
问题4:
bash: make: command not found错误linux下make命令不存在
解决办法:
make命令没有发现,是因为linux中没有安装对应的工具,在linux中执行下面的命令来安装:
yum -y install gcc automake autoconf libtool make
问题5:
运行./configure报错error: C++ preprocessor “/lib/cpp” fails sanity check
解决办法:
问题的根源是缺少必要的C++库。如果是CentOS系统,运行,如下命令解决:
yum install glibc-headers
yum install gcc-c++
Ubuntu系统中,运行命令:
apt-get install build-essential
apt-get install g++
问题6:
bash: netstat: command not found
解决办法:
出现上述这种情况,主要是没有安安装网络工具
yum install net-tools
问题7:
bash: telnet: command not found
解决办法:
yum install telnet.x86_64