> On 02/12/2004 Tad Kollar wrote: > > I'm running a 2.4.27 host + host-skas3-2.4.25.patch and have tried guest > > kernels 2.6.8.1 (patched), vanilla 2.6.9, and 2.6.10-rc2-mm4. On each of > > these guests, everything works fine except for tools that come with > > bind9 (host, dig, nslookup, named, rndc, etc) from Debian sid. They all > > seg fault immediately... strace and ltrace indicate the problem > > happening at a slightly different point each time. Strace shows it's > > most often after a munmap(), and ltrace seems to point to libisc as the > > culprit. The same tools work fine on a real host. There's plenty of > > memory available, only about 20M used out of 128M available to each guest. > > i experienced the same problems with a 2.6.9 + host-skas3-2.6.9-6.patch > host and a 2.6.9-bb3 uml kernel. > > i use debian sid in my uml as well.
You need to move /lib/tls out of the way, as UML doesn't support NPTL/TLS: mv /lib/tls /lib/tls-disabled The better option for Debian is to use dpkg-divert (thanks inkblot): dpkg-divert --divert /lib/tls-disabled /lib/tls -Chris ------------------------------------------------------- SF email is sponsored by - The IT Product Guide Read honest & candid reviews on hundreds of IT Products from real users. Discover which products truly live up to the hype. Start reading now. http://productguide.itmanagersjournal.com/ _______________________________________________ User-mode-linux-user mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/user-mode-linux-user
