我正在尝试在CentOS 7中安装IBM的软件,安装脚本会进行一些环境检查以确保一切正常。该脚本说“ifconfig中没有定义环回”。
问题来自这里:
(sshexec) Executing 'sudo /sbin/ifconfig lo | grep "inet addr:127.0.0.1" | wc -l' on localhost.localdomain.com as biadmin
(sshexec) Result: 0
似乎脚本在ifconfig lo中期望这行“inet addr:127.0.0.1” ,但我的ifconfig lo说“inet 127.0.0.1”
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
loop txqueuelen 0 (Loopback Local)
RX packets 13196 bytes 2606382 (2.4 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 13196 bytes 2606382 (2.4 MiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
我对网络知之甚少,但我的环回似乎配置得很好。有什么方法吗?