BACK
Requirements


The basics:
32 Bit version
  • Linux with 2.6 kernel (for example SuSE 9.2)
  • might need a current mmap support (some early 2.6 missed that)
  • i386/32bit distribution
It was successfully tested under Mandrake 10, RedHat ES4, SuSE 9.2, 9.3 and 10.x. Basically every newer Linux distro should suffice.

The ldd command shows the following list of needed libraries:
  • linux-gate.so.1 => (0xffffe000)
  • librt.so.1 => /lib/tls/librt.so.1 (0x40029000)
  • libstdc++.so.5 => /usr/lib/libstdc++.so.5 (0x40031000)
  • libm.so.6 => /lib/tls/libm.so.6 (0x400ed000)
  • libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x40110000)
  • libc.so.6 => /lib/tls/libc.so.6 (0x40118000)
  • libpthread.so.0 => /lib/tls/libpthread.so.0 (0x4022d000)
  • /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)

64 Bit version
  • Linux with 2.6 kernel (for example SuSE 10.1)
  • i586/64bit distribution

It was successfully tested under SuSE 10.1 and 10.2. Basically every newer Linux distro should suffice.

The ldd command shows the following list of needed libraries:
  • librt.so.1 => /lib64/librt.so.1 (0x00002aafabb03000)
  • libstdc++.so.6 => /usr/lib64/libstdc++.so.6 (0x00002aafabd0c000)
  • libm.so.6 => /lib64/libm.so.6 (0x00002aafac00a000)
  • libgcc_s.so.1 => /lib64/libgcc_s.so.1 (0x00002aafac261000)
  • libc.so.6 => /lib64/libc.so.6 (0x00002aafac46f000)
  • libpthread.so.0 => /lib64/libpthread.so.0 (0x00002aafac7b1000)
  • /lib64/ld-linux-x86-64.so.2 (0x00002aafab8e5000)

The 32Bit version will also run under a 64Bit system, provided that you've installed the 32Bit compatiblity libraries.

BACK