错误: 无法验证 downloads.sourceforge.net 的由 “/C=US/O=Let’s Encrypt/CN=R3” 颁发的证书: 颁发的证书已经过期。 要以不安全的方式连接至 downloads.sourceforge.net,使用“–no-check-certificate”。
这是你大概是用的普通用户下载
解决方式
sudo yum install -y ca-certificates
这时需要保证普通用户有root权限
就先要切换root用户,chmod u+w /etc/sudoers 开放 sudoers 文件的权限,然后 vim /etc/sudoers ,加入
root ALL = (ALL) ALL
普通用户名 ALL = (ALL) ALL
保存退出,回复文件 sudoers 权限,chmod u-w /etc/sudoers ,切换用户,继续 sudo yum install -y ca-certificates ,然后接着执行下载命令
解压文件时出现的问题
configure: error: in /usr/local/src/pcre-8.45’:configure: error: no acceptable C compiler found in $PATHSee `config.log’ for more details
跟你说没有 C 编译环境
所以要 先 yum update -y 再 yum install -y gcc 执行命令后,再执行 ./configure
又出问题
configure: error: Invalid C++ compiler or C++ compiler flags
跟你说没有 C++ 环境
所以要 yum install -y gcc-c++ 执行命令后,再执行 ./configure
这次就好了
|