From owner-freebsd-questions@FreeBSD.ORG Thu Aug 28 15:46:05 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 DE9D016A4BF for ; Thu, 28 Aug 2003 15:46:05 -0700 (PDT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9877E43FA3 for ; Thu, 28 Aug 2003 15:46:04 -0700 (PDT) (envelope-from hhasenbe@techfak.uni-bielefeld.de) Received: from fwd07.aul.t-online.de by mailout05.sul.t-online.com with smtp id 19sVWi-0008KB-02; Fri, 29 Aug 2003 00:46:00 +0200 Received: from techfak.uni-bielefeld.de (rCvBWsZGgeTAG41vH2UiPVb84r0OBWD03Y4NBkZ5Wa-tyk0F8lnQEs@[217.82.93.151]) by fmrl07.sul.t-online.com with esmtp id 19sVWa-0x20xM0; Fri, 29 Aug 2003 00:45:52 +0200 Message-ID: <3F4E8619.70900@techfak.uni-bielefeld.de> Date: Fri, 29 Aug 2003 00:45:45 +0200 From: Hendrik Hasenbein User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: de, en, en-us MIME-Version: 1.0 To: Jerry McAllister References: <200308282039.h7SKdboj028363@clunix.cl.msu.edu> In-Reply-To: <200308282039.h7SKdboj028363@clunix.cl.msu.edu> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Seen: false X-ID: rCvBWsZGgeTAG41vH2UiPVb84r0OBWD03Y4NBkZ5Wa-tyk0F8lnQEs@t-dialin.net cc: Charles Howse cc: freebsd-questions@freebsd.org Subject: Re: Scroll back in 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: Thu, 28 Aug 2003 22:46:06 -0000 Jerry McAllister wrote: > Generally hitting Scroll Lock and then PageUp works for me. > The amount you can see depends on the amount of space reserved > for it that is configured. I don't remember the parameter or > place right off hand. You can configure options for the sc in the kernel (taken from 4.x): device sc0 at isa? flags 0x100 options SC_NORM_ATTR="(FG_GREEN|BG_BLACK)" options SC_NORM_REV_ATTR="(FG_BLACK|BG_GREEN)" options SC_KERNEL_CONS_ATTR="(FG_RED|BG_BLACK)" options SC_KERNEL_CONS_REV_ATTR="(FG_BLACK|BG_RED)" options SC_HISTORY_SIZE=512 Hendrik