From owner-freebsd-current@FreeBSD.ORG Thu Sep 30 06:22:47 2010 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 722EF106566C; Thu, 30 Sep 2010 06:22:47 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from mail-gw0-f54.google.com (mail-gw0-f54.google.com [74.125.83.54]) by mx1.freebsd.org (Postfix) with ESMTP id 1682C8FC0A; Thu, 30 Sep 2010 06:22:46 +0000 (UTC) Received: by gwb15 with SMTP id 15so705715gwb.13 for ; Wed, 29 Sep 2010 23:22:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type; bh=1iBQBnoREJsHTEOVxeNLNy77VpaRVyFL5a5XJm8hy7A=; b=bpeXERFElAo46/q03QggV5p5optCDBCPuZ/V4+k+W+vkdz+WDUiiRIvGalAFF/PEaL Pr0M6nmTQKiulV8XXfUUAlM30a4+MsVo7erpVBsJxiGngZL544D5ut7A8NVEd2KmDA+c ykCkrjs2EjPRM7Q+cKxDS6vHWU5Kd+rsUvX7A= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=G7CULXaK3Y3WpQJ7AhoDx5Vxea4OA1tpzq0bWuOh1OrGqXSczQStxqw+8nihoah3+J rZdbOINOByE7W3g8zK2UK4sM38icnS6uDyI6bVV/hhvzBYn3fsqy8aDrlauAidvj+EfF cY3z08GzrEFBWt+nRAZxnneseJeFBY5VQoVH0= MIME-Version: 1.0 Received: by 10.229.237.129 with SMTP id ko1mr2232596qcb.4.1285827766088; Wed, 29 Sep 2010 23:22:46 -0700 (PDT) Received: by 10.229.50.8 with HTTP; Wed, 29 Sep 2010 23:22:45 -0700 (PDT) In-Reply-To: References: Date: Thu, 30 Sep 2010 10:22:45 +0400 Message-ID: From: Sergey Kandaurov To: Ryan Stone Content-Type: text/plain; charset=ISO-8859-1 Cc: attilio@freebsd.org, FreeBSD Current Subject: Re: [PATCH] Netdump for review and testing -- preliminary version 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: Thu, 30 Sep 2010 06:22:47 -0000 The 1st error is caught :). Prior actions was triggering netdump, leaving db> and entering again, then trigger netdump once more. Dumping 1146 MB: 1131 1115 1099 1083 1067 1051 1035 1019 1003 987 971 955 939 923 907 891 875 859 843 827 811 795. . . . . . . . . . . ** DUMP FAILED (ERROR 60) ** Failed to dump the actual raw datas Then I was able to leave ddb back to the working system. P.S. What about to start netdumpsrv from rc.d ? It's very simple. %%% #!/bin/sh # # $FreeBSD$ # # PROVIDE: netdumpsrv # REQUIRE: NETWORKING # KEYWORD: shutdown . /etc/rc.subr name="netdumpsrv" rcvar=`set_rcvar` command="/usr/sbin/${name}" pidfile="/var/run/${name}.pid" load_rc_config $name run_rc_command "$1" %%% -- wbr, pluknet