From owner-freebsd-questions@FreeBSD.ORG Thu May 1 17:40:15 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 475FD37B401 for ; Thu, 1 May 2003 17:40:15 -0700 (PDT) Received: from ns.museum.rain.com (gw-ipinc.museum.rain.com [206.29.169.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6FA43FBD for ; Thu, 1 May 2003 17:40:14 -0700 (PDT) (envelope-from list@museum.rain.com) Received: from ns.museum.rain.com (localhost [127.0.0.1]) by ns.museum.rain.com (8.12.9/8.12.9) with ESMTP id h420eBS6096539; Thu, 1 May 2003 17:40:11 -0700 (PDT) (envelope-from list@ns.museum.rain.com) Received: (from list@localhost) by ns.museum.rain.com (8.12.9/8.12.9/Submit) id h420eB8a096538; Thu, 1 May 2003 17:40:11 -0700 (PDT) (envelope-from list) Date: Thu, 1 May 2003 17:40:11 -0700 From: James Long To: boxend@swbell.net Message-ID: <20030501174011.A96504@ns.museum.rain.com> References: <3EB13FE5.5372.1B4CC40@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <3EB13FE5.5372.1B4CC40@localhost>; from boxend@swbell.net on Thu, May 01, 2003 at 03:40:21PM -0500 X-Spam-Status: No, hits=-29.3 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_MUTT version=2.50 X-Spam-Checker-Version: SpamAssassin 2.50 (1.173-2003-02-20-exp) cc: freebsd-questions@freebsd.org Subject: Re: Remote upgrade X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: james_mapson@museum.rain.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 May 2003 00:40:15 -0000 On Thu, May 01, 2003 at 03:40:21PM -0500, boxend@swbell.net wrote: > When doing a remote upgrade, what is the best way to force the process into the > background, in case the dialup line for ssh session dies before buildworld finishes. Ensure that /tmp/ has free space to hold a few Megabytes of output, and use: # make buildworld >/tmp/make_bw.out 2>&1 & Then you can monitor the progress of the make by examining /tmp/make_bw.out # tail -f /tmp/make_bw.out Control-C will terminate tail, and return you to a shell prompt, while the make continues to run in the background. This is not as sophisticated as using screen, but simpler, and does not require installing any additional software.