From owner-freebsd-questions@FreeBSD.ORG Mon Apr 17 12:37:16 2006 Return-Path: X-Original-To: freebsd-questions@freebsd.org 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 52E5916A401 for ; Mon, 17 Apr 2006 12:37:16 +0000 (UTC) (envelope-from kdk@daleco.biz) Received: from ezekiel.daleco.biz (southernuniform.com [66.76.92.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEE9643D45 for ; Mon, 17 Apr 2006 12:37:13 +0000 (GMT) (envelope-from kdk@daleco.biz) Received: from [192.168.2.2] ([69.27.149.254]) by ezekiel.daleco.biz (8.13.4/8.13.1) with ESMTP id k3HCa651064102; Mon, 17 Apr 2006 07:36:26 -0500 (CDT) (envelope-from kdk@daleco.biz) Message-ID: <44438BAC.9040505@daleco.biz> Date: Mon, 17 Apr 2006 07:35:56 -0500 From: Kevin Kinsey User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.12) Gecko/20060127 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Enigma References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-questions@freebsd.org Subject: Re: On-Board video card configuration. 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: Mon, 17 Apr 2006 12:37:16 -0000 Enigma wrote: >I am fairly new to FreeBSD, and I have been having problems with my >IBM Aptiva 2196-24A in getting the on-board video card configured with >freeBSD. So i can run X window system at a decent resolution. All i can >get to work is Standard VGA driver at 640x800 at 8bit. I have had this >card working properly (win2k, ubuntu) so it is fully operational. The >on-board chipset is SiS 540, and due to freeBSD not supporting this with >options in the config menu, how can i go about setting it up to work? > > In no particular order, what about: 1. Tell us more about what you've tried. 2. Post your configuration file. 3. Read the documentation at the Xorg site, or the manpage(s). 4. Peruse /var/log/Xorg.*log files for clues. 5. Xorg -configure ? To hazard a guess, I'd suggest defining the proper Sync and Refresh rates for your monitor and setting up a better "screens" block with a higher resolution and bit depth. Here's part of one of my configuration files: -------------------------------------------------------- Section "Monitor" Identifier "Monitor0" VendorName "ProView" ModelName "760N" Option "DPMS" HorizSync 35.0 - 70.0 VertRefresh 50.0 - 120.0 EndSection SubSection "Display" Depth 24 Modes "1280x1024" Modes "1600x1200" Modes "1024x768" EndSubSection --------------------------------------------------------- HTH, Kevin Kinsey