#12 pangor 09 Dec 2005 18:28
The SIGSEGV is the signal set by the kernel to a program in unix and Linux when it has caused a memory segemntation violation. Trying to use memory that does not belong to it. This is most often a bug in the software or as I suspect in this case using a version of a shared library that is not compatible with the library version or the kernel version that installed on the comptuer. Since none of the versions of the program were compiled for what I am running on my Linux box, I was trying to run the static linked version of the software. So, I assume that it was compiled for a version Linux kernel and has a different system call than my version.
Pangor