From owner-freebsd-questions@FreeBSD.ORG Fri Apr 4 06:33:56 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 003B837B401 for ; Fri, 4 Apr 2003 06:33:55 -0800 (PST) Received: from mail1.uits.uconn.edu (mail1.uits.uconn.edu [137.99.25.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E25E43F93 for ; Fri, 4 Apr 2003 06:33:55 -0800 (PST) (envelope-from matt@forsetti.com) Received: from [137.99.80.149] (d80h149.public.uconn.edu [137.99.80.149]) by mail1.uits.uconn.edu (8.11.6/8.11.6) with ESMTP id h34EXar01738; Fri, 4 Apr 2003 09:33:36 -0500 From: Matthew Smith To: Doug Poland In-Reply-To: <20030404142919.GA1472@babylon.polands.org> References: <20030404142919.GA1472@babylon.polands.org> Content-Type: text/plain Organization: Message-Id: <1049466814.717.0.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 04 Apr 2003 09:33:36 -0500 Content-Transfer-Encoding: 7bit X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (score=-1.1, required 6, AWL, IN_REP_TO, QUOTED_EMAIL_TEXT, REFERENCES, SPAM_PHRASE_00_01) cc: questions@freebsd.org Subject: Re: How to write to console 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: Fri, 04 Apr 2003 14:33:56 -0000 Try redirecting to /dev/ttyv0, as in: echo "My Message" > /dev/ttyv0 -Matt On Fri, 2003-04-04 at 09:29, Doug Poland wrote: > Hello, > > I'd like to write to the "default" console of a -STABLE box. In this > case, no one is logged in on that console/terminal. > > The commands write, talk, and wall mention writing to a terminal of a > logged in user. Ideally, I'd like to clear the screen and display an > 80x25 message. > > Does anyone know how I can accomplish this?