From owner-freebsd-questions Tue Mar 12 6: 2:50 2002 Delivered-To: freebsd-questions@freebsd.org Received: from mailsrv.otenet.gr (mailsrv.otenet.gr [195.170.0.5]) by hub.freebsd.org (Postfix) with ESMTP id 8839D37B41A for ; Tue, 12 Mar 2002 06:02:42 -0800 (PST) Received: from hades.hell.gr (patr530-a145.otenet.gr [212.205.215.145]) by mailsrv.otenet.gr (8.12.2/8.12.2) with ESMTP id g2CE2TuO023186; Tue, 12 Mar 2002 16:02:32 +0200 (EET) Received: from hades.hell.gr (hades [127.0.0.1]) by hades.hell.gr (8.12.2/8.12.2) with ESMTP id g2CE2omO003460; Tue, 12 Mar 2002 16:02:50 +0200 (EET) (envelope-from keramida@freebsd.org) Received: (from charon@localhost) by hades.hell.gr (8.12.2/8.12.2/Submit) id g2CE2lW9003450; Tue, 12 Mar 2002 16:02:47 +0200 (EET) (envelope-from keramida@freebsd.org) X-Authentication-Warning: hades.hell.gr: charon set sender to keramida@freebsd.org using -f Date: Tue, 12 Mar 2002 16:02:44 +0200 From: Giorgos Keramidas To: "J.S." Cc: freebsd-questions@freebsd.org Subject: Re: Annoying startup output Message-ID: <20020312140244.GA955@hades.hell.gr> References: <20020311161614.0a34fdba.johann@broadpark.no> <20020311173853.GB721@hades.hell.gr> <20020312075746.286c7bcc.johann@broadpark.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20020312075746.286c7bcc.johann@broadpark.no> User-Agent: Mutt/1.3.27i Sender: owner-freebsd-questions@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG On 2002-03-12 07:57, J.S. wrote: > That's what I find odd as well. But note these are system console messages. > > Does that too get redirected? > > start) > /usr/bin/su -l ftpd -c '/home/ftpd/openftpd/sbin/ftpd -q' > /dev/null & You have redirected standard output only, which means that stderr will still be sent to the terminal. Try something like: command >/dev/null 2>&1 Many programs send their messages to standard error, which is a different stream from stdout and does not get redirected by a plain > redirection. Giorgos Keramidas FreeBSD Documentation Project keramida@{freebsd.org,ceid.upatras.gr} http://www.FreeBSD.org/docproj/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-questions" in the body of the message