From owner-freebsd-questions@FreeBSD.ORG Thu Aug 9 20:23:33 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 4ABE916A41A for ; Thu, 9 Aug 2007 20:23:33 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from a.cs.okstate.edu (a.cs.okstate.edu [139.78.113.1]) by mx1.freebsd.org (Postfix) with ESMTP id 2D10F13C458 for ; Thu, 9 Aug 2007 20:23:33 +0000 (UTC) (envelope-from lreid@cs.okstate.edu) Received: from [172.18.0.137] (isa01.tulsatech.org [70.168.226.131]) by a.cs.okstate.edu (Postfix) with ESMTP id 47460A0637; Thu, 9 Aug 2007 15:23:32 -0500 (CDT) Message-ID: <46BB77C2.2020809@cs.okstate.edu> Date: Thu, 09 Aug 2007 15:23:30 -0500 From: Reid Linnemann User-Agent: Thunderbird 2.0.0.6 (X11/20070809) MIME-Version: 1.0 To: Sean Murphy References: <46BB75D0.3080200@calarts.edu> In-Reply-To: <46BB75D0.3080200@calarts.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org 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:23:33 -0000 Written by Sean Murphy on 08/09/07 15:15>> > How do I make install clean a port in the background? I used > > cd /usr/ports/www/apache22 > make install clean & > > it returns the pid but then compiles in the foreground > > What am I doing wrong? > > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to > "freebsd-questions-unsubscribe@freebsd.org" You're just seeing the output in the foreground, since the stdio and stderr for that process are still directed to the terminal. If you are using bash, you could "make install clean &> /dev/null &" to have the process operate in the background and direct all output the the bitbucket. I don't know the analog for other shells.