gcc: error trying to exec ‘cc1plus’: execvp: No such file or directory
解决方案
yum install gcc-c++ -y
方案解决
fdisk -l
查看新增的磁盘盘符路径sudo mkfs.ext4 盘符路径
跳过磁盘检查,快速格式化sudo mkfs.ext4 -c 盘符路径
mount 盘符路径 目标目录路径
(如果目标目录路径不存在需要提前创建)/lib64/libstdc++.so.6: version `GLIBCXX_3.4.xx’ not found问题解决方法
解决方案
strings /usr/lib64/libstdc++.so.6 | grep GLIBCXX
ln -s libstdc++.so.6.x绝对路径 libstdc++.so.6
./configure: error: the HTTP rewrite module requires the PCRE library.
解决方案
yum -y install pcre-devel
如何指定yum安装依赖时下载相关依赖到某个目录下
解决方案
yum install --downloadonly --downloaddir=本地存储位置 模块名称
urllib3 v2.0 only supports OpenSSL 1.1.1+, currently the ‘ssl’ module is compiled with OpenSSL 1.0.2k-fips
解决方案
升级OpenSSL到1.1.1或更高版本
https://blog.csdn.net/qq_27745471/article/details/128708290