From owner-freebsd-questions@FreeBSD.ORG Thu May 22 04:13:27 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 D00E737B405 for ; Thu, 22 May 2003 04:13:27 -0700 (PDT) Received: from mail.munk.nu (213-152-51-194.dsl.eclipse.net.uk [213.152.51.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8474643FBF for ; Thu, 22 May 2003 04:13:26 -0700 (PDT) (envelope-from munk@mail.munk.nu) Received: from munk by mail.munk.nu with local (Exim 4.20) id 19Io0j-0005pp-6N for freebsd-questions@freebsd.org; Thu, 22 May 2003 12:13:25 +0100 Date: Thu, 22 May 2003 12:13:25 +0100 From: Jez Hancock To: freebsd-questions Message-ID: <20030522111325.GA22219@users.munk.nu> Mail-Followup-To: freebsd-questions References: <20030522103716.GA47876@pooh.nagual.st> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030522103716.GA47876@pooh.nagual.st> User-Agent: Mutt/1.4.1i Sender: User Munk Subject: Re: root msgs on ttyv0.. 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: Thu, 22 May 2003 11:13:28 -0000 On Thu, May 22, 2003 at 12:37:16PM +0200, Dick Hoogendijk wrote: > Can someone explain to me how I can get rid of the messages that clutter > my ttyv0, when I log in as root on i,e, ttyv4. It's messing up my work > on the first tty (where I work as a normal user). Reading news w/ slrn > and *bhang* "a message about root activities on another tty.." > > Can this be turned off? Or redirected to another tty? Or what? Yes, read the manpage: man syslogd.conf Specifically try changing this line: *.err;kern.debug;auth.notice;mail.crit /dev/console in /etc/syslog.conf. If you wanted to stop receiving messages about logging on, perhaps try: *.err;kern.debug;auth.none;mail.crit /dev/console remember to send a hangup signal to syslogd: kill -HUP `cat /var/run/syslog.pid` after changing /etc/syslog.conf. HTH, Jez