概述
在编译时遇到如下报错内容:
[root@localhost zabbix-3.2.11]# ./configure
configure: error: working directory cannot be determined
排查思路
由于日志暂缺失,仅提供部分命令
查看具体报错信息
执行如下命令:
bash -x ./configure
通过该命令发现执行如下命令时$?状态为255,正常应为0
[root@localhost ~]# ls -di .
100663361 .
[root@localhost ~]# echo $?
255
解决办法
通过升级ls命令版本解决
[root@localhost ~]# yum update coreutils -y