From owner-freebsd-questions@FreeBSD.ORG Thu Aug 9 20:37:47 2007 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8D65716A418 for ; Thu, 9 Aug 2007 20:37:47 +0000 (UTC) (envelope-from freebsd@elgert.dk) Received: from pfepb.post.tele.dk (pfepb.post.tele.dk [195.41.46.236]) by mx1.freebsd.org (Postfix) with ESMTP id 5881013C45D for ; Thu, 9 Aug 2007 20:37:47 +0000 (UTC) (envelope-from freebsd@elgert.dk) Received: from elgert.dk (0x573c4c16.nivaanqu1.broadband.tele.dk [87.60.76.22]) by pfepb.post.tele.dk (Postfix) with SMTP id 7161EA50006; Thu, 9 Aug 2007 22:37:44 +0200 (CEST) Received: by elgert.dk (sSMTP sendmail emulation); Thu, 9 Aug 2007 22:37:45 +0200 Date: Thu, 9 Aug 2007 22:37:45 +0200 From: Harry Jensen To: freebsd-questions@freebsd.org Message-ID: <20070809203745.GB915@mugin.localhost> Mail-Followup-To: freebsd-questions@freebsd.org References: <46BB75D0.3080200@calarts.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <46BB75D0.3080200@calarts.edu> User-Agent: Mutt/1.4.2.3i Subject: Re: How do I make install clean a port in the background X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Aug 2007 20:37:47 -0000 On Thu, Aug 09, 2007 at 01:15:12PM -0700, Sean Murphy wrote: > How do I make install clean a port in the background? I used > > cd /usr/ports/www/apache22 > make install clean & It is in the background, but if there is output from the process, you will see it. A solution could be "make install clean >/dev/null &", but I'm sure that it not will be very wise, I dont know what happens if a config screen shows up, and next point is if you get a fault, it's gone with /dev/null. Why don't you just use another tty? Brgds Harry