From owner-freebsd-current@FreeBSD.ORG Fri Oct 14 11:08:21 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1ACE16A41F; Fri, 14 Oct 2005 11:08:21 +0000 (GMT) (envelope-from discussion-lists@linnet.org) Received: from thorn.pobox.com (thorn.pobox.com [208.210.124.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9042F43D46; Fri, 14 Oct 2005 11:08:21 +0000 (GMT) (envelope-from discussion-lists@linnet.org) Received: from thorn (localhost [127.0.0.1]) by thorn.pobox.com (Postfix) with ESMTP id 9C2B59F; Fri, 14 Oct 2005 07:07:08 -0400 (EDT) Received: from mappit.local.linnet.org (212-74-113-67.static.dsl.as9105.com [212.74.113.67]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by thorn.sasl.smtp.pobox.com (Postfix) with ESMTP id 4E37E6175; Fri, 14 Oct 2005 07:07:05 -0400 (EDT) Received: from lists by mappit.local.linnet.org with local (Exim 4.54 (FreeBSD)) id 1EQNQ6-0004xj-N2; Fri, 14 Oct 2005 12:08:14 +0100 Date: Fri, 14 Oct 2005 12:08:14 +0100 From: Brian Candler To: Emanuel Strobl Message-ID: <20051014110814.GA19035@uk.tiscali.com> References: <200510111932.50224@harrymail> <200510141141.33231@harrymail> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200510141141.33231@harrymail> User-Agent: Mutt/1.4.2.1i Cc: nectar@freebsd.org, freebsd-current@freebsd.org Subject: Re: nss_ldap segmentation fault with RC1 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Oct 2005 11:08:22 -0000 On Fri, Oct 14, 2005 at 11:41:21AM +0200, Emanuel Strobl wrote: > nss_ldap: ==> do_search_s > Segmentation fault (core dumped) It looks like the program which loaded nss_ldap.so has dumped core. This might be login, sshd, ... I really don't know :-) But a scan across your filesystem for *.core might turn it up. Alternatively, you should be able to put the file in a directory of your choice using # sysctl kern.corefile=/var/tmp/%N.core If it's a setuid program (like /usr/bin/login), you will in any case need to set # sysctl kern.sugid_coredump=1 to get it written to disk. However there will be other people here who are much more expert in how to get core files than me... Regards, Brian.