>An unexpected exception has been detected in native code outside the >VM. Unexpected Signal : 11 occurred at PC=0xB7F1B731 >Function=(null) >Library=/lib/tls/libc.so.6
Hmm. Found something interesting here: http://www.mythic-beasts.com/umlwiki/wiki.pl?action=browse&diff=1&id=2.6_And_TLS Modern Linux-based distributions provide support for NPTL (Native POSIX Threading Library), which requires Thread Local Storage (TLS). Unfortunately User Mode Linux does not yet support TLS, and does not react well to the presence of a TLS-aware glibc. TLS will only be enabled by default if the kernel is > 2.6 (or if extraversion begins with "-nptl" on a 2.4 kernel -- we don't do this -- or if you are using White Box, which enabled TLS by default). Fortunately, TLS can be disabled relatively easily. Moving or deleting the /lib/tls directory, and rebooting your server, will disable TLS support (N.B. Some distributions may also have a /usr/lib/tls). Until the reboot occurs, 'free' will give misleading results about the amount of memory in use, and some applications may fail to work. I found that there are 3 libraries on disk that are all called libc-2.5.3.so. All with their counterpart libc.so.6: [EMAIL PROTECTED] tls]# locate libc.so.6 /lib/i686/libc.so.6 /lib/tls/libc.so.6 /lib/libc.so.6 Haven't tried the mv/reboot yet, still looking at some other things... Isn't life fun... Paul ____________________________________________________ Want to buy your Pack or Services from Mandriva? Go to http://store.mandriva.com Join the Club : http://www.mandrivaclub.com ____________________________________________________
