Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

This is one of the things our install script will check. But if want to do some manual investigation of the issue this is how you go about it.

Iguana is written in C++ and is linked to GLIBC runtime libraries which are part of the operating system. The catch with this is that your system needs to be modern enough to have the libraries that Iguana requires.

As of the date of writing this documentation this version was 2.34. How do you tell what version of libraries your system has? This little code fragment should do the trick:

echo $(ldd --version | head -n 1 | awk '{print $NF}')

It will print out what version of GLIBC libraries are on your system.

If it turns out you have an old Linux server get a new one. Life is too short to be dealing with old Linux distributions (smile) .

  • No labels