没有ifconfig命令目前我了解两个原因: 1./sbin/ifconfig 可以执行,但是ifconfig无法执行.这个解决的时候只需要将/sbin 添加到PATH下就可以了. 2.系统未安装ifconfig命令.解决方法:打通网络,使用yum安装ifconfig. 解决步骤: 命令如下: 1)查看当前ip信息: ip addr show 2)编辑网卡配置信息,eno16777736应该修改成你的ip信息中的网卡名: vi /etc/sysconfig/network-scripts/ifc…
fedora安装后,yum命令不能使用,Cannot retrieve metalink for repository: fedora. Please verify its path and try again 解决方法 这个可能是不能接连https请求导致的,把这些接连注释就可以了 命令为: su -c “sed -i ‘s|^#baseurl|baseurl| ; s|^mirrorlist|#mirrorlist|’ /etc/yum.repos.d/*”…
CentOS 下 安装 nginx 执行配置命令 ./configure --prefix=/opt/nginx --sbin-path=/usr/bin/nginx 时提示以下错误: checking for OS Linux 2.6.32-431.el6.x86_64 x86_64checking for C compiler ... not found 解决: 执行以下命令: yum -y install gcc gcc-c++ autoconf automake make 总结:安装ng…