From owner-freebsd-questions@FreeBSD.ORG Fri Oct 31 08:58:13 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DCDC16A4CE for ; Fri, 31 Oct 2003 08:58:13 -0800 (PST) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9988F43F93 for ; Fri, 31 Oct 2003 08:58:12 -0800 (PST) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id h9VGwCKk015914; Fri, 31 Oct 2003 08:58:12 -0800 (PST) Received: from [10.1.1.193] (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0)h9VGwBZq018672; Fri, 31 Oct 2003 08:58:11 -0800 (PST) In-Reply-To: <017301c39fcf$9daa5ba0$fb65a8c0@ocfl061> References: <002a01c39cb4$11062e90$0501a8c0@canada> <000a01c39da0$0cdb1b40$fb65a8c0@ocfl061> <3F9EE982.5040001@magidesign.com> <000a01c39da1$bb981e70$fb65a8c0@ocfl061> <3F9EF09F.3070800@mindcore.net> <01c501c39ef7$a536ab40$fb65a8c0@ocfl061> <20031030182345.GD29685@rot13.obsecurity.org> <017301c39fcf$9daa5ba0$fb65a8c0@ocfl061> Mime-Version: 1.0 (Apple Message framework v606) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <6BA6722D-0BC3-11D8-9CED-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Fri, 31 Oct 2003 11:58:16 -0500 To: "M.D. DeWar" X-Mailer: Apple Mail (2.606) cc: freebsd Subject: Re: what happens when connection is lost ? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 31 Oct 2003 16:58:13 -0000 On Oct 31, 2003, at 11:54 AM, M.D. DeWar wrote: > Hello, > If I am logged in on a FreeBSD machine with ssh. > And doing say a ./configure or make and I lose connection does that > stop > what I was doing ? In general, yes-- what happens is that a broken connection results in a hangup (HUP) signal being sent to the process group containing ssh, your shell, and whatever commands might have been running. > data get corrupted etc ? Generally not. The point of the HUP signal is to allow processes to shut down cleanly. See "man nohup", "man signal".... -- -Xhuxk