HI Team,
We need to install gcc compiler which is depencency to install the Zabbix agent for monitoring the servers.
But the installation of gcc compiler is getting failed with the following error. Could any one help.
checking for a BSD compatible install... /usr/bin/install -c
checking whether ln works... yes
checking whether ln -s works... yes
checking for gcc... no
checking for cc... no
configure: error: no acceptable cc found in $PATH
It depends on how you're trying to install the GCC compiler. That set of messages looks like a "./configure" command, right before a "make" (the compilation step) and "make install" (the installation process). Is that for preparing to compile the Zabbix agent? Or are you trying to compile GCC and you're seeing this issue? If you're trying to compile GCC, then you'll need a compiler to do it ("chicken and egg" situation).
The easiest way to install GCC on a NetWitness appliance is by getting it from the YUM repository, like this.
"yum install gcc"
That ought to do it. If not, then if you could post your error messages from that command, that would help.