From owner-freebsd-questions@FreeBSD.ORG Fri Sep 14 07:30:21 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 308D016A417 for ; Fri, 14 Sep 2007 07:30:21 +0000 (UTC) (envelope-from payne@magidesign.com) Received: from securecomputing.com (mail2.securecomputing.com [192.55.214.220]) by mx1.freebsd.org (Postfix) with ESMTP id E667113C4A6 for ; Fri, 14 Sep 2007 07:30:20 +0000 (UTC) (envelope-from payne@magidesign.com) Received: from ([192.168.51.101]) by mail2.securecomputing.com with ESMTP id 5502532.16332010; Fri, 14 Sep 2007 02:29:55 -0500 Received: from limbo-securecomputing-com.local ([10.15.31.33]) by ICE.scur.com with Microsoft SMTPSVC(6.0.3790.3959); Fri, 14 Sep 2007 02:29:34 -0500 Message-ID: <46EA386D.9090703@magidesign.com> Date: Fri, 14 Sep 2007 03:29:49 -0400 From: Payne User-Agent: Thunderbird 2.0.0.6 (Macintosh/20070728) MIME-Version: 1.0 To: Joshua Isom References: <46EA2B33.8010706@magidesign.com> <258f9dba30ae489a1f80ad9e66debf9c@gmail.com> In-Reply-To: <258f9dba30ae489a1f80ad9e66debf9c@gmail.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-OriginalArrivalTime: 14 Sep 2007 07:29:34.0710 (UTC) FILETIME=[FF9E1960:01C7F6A0] Cc: FreeBSD Questions Subject: Re: How to change the font size in the terminal 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: Fri, 14 Sep 2007 07:30:21 -0000 Joshua, Thanks, I guess it can, because it outputs a ton of modes. Based on what you told I was able to find this... To be able to get a higher resolution Console, you must follow the below Steps. #reconfigure the kernel, at its simplest become root install the sources (for example, from the FreeBSD installation CD) cd /usr/src/sys/i386/conf cp GENERIC CUSTOM open CUSTOM with your text editor change “ident GENERIC” to “ident CUSTOM” below the other OPTIONS, add OPTIONS VESA, and OPTIONS SC_PIXEL_MODE save and close CUSTOM cd /usr/src make buildkernel KERNCONF=CUSTOM make installkernel KERNCONF=CUSTOM reboot vidcontrol -i mode | more #scroll trough the available options vidcontrol MODE_279 #for example, to set a higher console mode vidcontrol 132×25 #another example vidcontrol 100×37 #and another one #to make changes persistent, run something like echo ‘allscreens_flags=”-g 100×37 VESA_800×600″‘ >> /etc/rc.conf #or echo ‘allscreens_flags=”-g 135×25 VESA_1024×768″‘ >> /etc/rc.conf #which would give you a 800×600 (or 1024×768) console on all terminals So I am now compiling a new kernel so that I can make it done. It should work my vid card is ATI with 256MB. Again, thanks for the pointer, more and more google is becoming the spammer waste land. Chuck Joshua Isom wrote: > If you run `vidcontrol -i mode` it will tell you what your monitor's > capable of with text and graphics. But I'd recommend looking at the > manpage first. > > On Sep 14, 2007, at 1:33 AM, Payne wrote: > >> Guys, >> >> One thing that has always bugged me, it the font size of the >> terminal, I have tried for months to change the size to something >> like linux uses, so that my size is using my 1200x1000 better and not >> looking like 600x400 screen. But no matter what I do, it always stays >> the same, I have looked on the great waste of google with no luck. Is >> there some like hurd that helps change the screen to the monitor out >> put? >> >> Chuck >> _______________________________________________ >> 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" >> > >