From owner-freebsd-ports@FreeBSD.ORG Thu Jun 28 11:35:33 2007 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0DCC616A46B for ; Thu, 28 Jun 2007 11:35:33 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from smtpclu-4.eunet.yu (smtpclu-4.eunet.yu [194.247.192.229]) by mx1.freebsd.org (Postfix) with ESMTP id 9291513C44B for ; Thu, 28 Jun 2007 11:35:32 +0000 (UTC) (envelope-from nlecic@EUnet.yu) Received: from nyx.localhost (adsl-233-35.eunet.yu [213.198.233.35]) by smtpclu-4.eunet.yu (8.13.6/8.13.6) with ESMTP id l5SBZQx4010922; Thu, 28 Jun 2007 13:35:27 +0200 Message-Id: <200706281135.l5SBZQx4010922@smtpclu-4.eunet.yu> Date: Thu, 28 Jun 2007 13:35:57 +0200 From: Nikola Lecic To: David Marec In-Reply-To: <200706280821.20541.dmares.spam@free.fr> References: <200706280821.20541.dmares.spam@free.fr> X-Mailer: Claws Mail 2.9.2 (GTK+ 2.10.12; i386-portbld-freebsd6.2) X-Operating-System: FreeBSD 6.2-RELEASE X-Face: pbl6-.[$G'Fi(Ogs2xlXP-V6{3||$Y[LOYs&~GJoikj'cVjcFC[V7du;;0~6nO= [Vi2?uU1Pq~,=Adj@,T:|"`$AF~il]J.Nz#2pU',Y7.{B;m/?{#sO^Dvo$rnmY6] Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-EUNET-AVAS-Milter-Version: 2.0.0 X-AVAS-Virus-Status: clean X-AVAS-Spamd-Symbols: BAYES_40,UNPARSEABLE_RELAY X-AVAS-Spam-Score: -0.2 Cc: freebsd-ports@freebsd.org Subject: Re: Xorg failed to run on old PC. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 28 Jun 2007 11:35:33 -0000 On Thu, 28 Jun 2007 08:21:20 +0200 David Marec wrote: > hi Hello David, =20 > I am trying to configure an old "cirix166-48Mo RAM" workstation. >=20 > But, FreeBSD 6.2 installed, Xorg crashes on=20 > =C2=AB Caught signal 11=C2=BB >=20 > I tried three drivers, mga, vesa and vga. > The driver "mga" failed to load DRI module, which was not requested. >=20 > The log file, created with no "xorg.conf", can be uploaded here: > http://david.marec.free.fr/public/Xorg.0.log Your X crashed simply because it tried to use 1152x864 at 75Hz, and hardware is capable of not more than 1024x768@75Hz. This unwise automatic choice of default resolution and frequencies is not uncommon with older hardware. > It seems that i had the same problem when i tried to launch XUbuntu > on it. The only linux distribution that works is Damn Small Linux. Yes, I'm sure that can happen with Ubuntu. =20 > Any idea ? > Using the latest xorg 7 release ?=20 > Getting back to FreeBSD 4.x to try Xfree instead of xorg ? No, don't go back, there is nothing that older versions can do and newer ones can't. Upgrading to 7.2 is certainly a good idea, but this can surely work even with 6.9 you tried. I'd do something like this: * You must create a config file; you can start with 'Xorg -configure', it will create an initial /root/xorg.conf.new; then you can test it with 'X -config /root/xorg.conf.new'. I think you need something like: in Section "Monitor" HorizSync 31.5 - 48.5 # try also: 31.5 - 57.0 VertRefresh 50 - 70 # try also: 50 - 75 in Section "Screen" DefaultColorDepth 16 # start with the lower value SubSection "Display" Depth 16 Modes "1024x768" "800x600" "640x480" EndSubSection # delete here all subsections with higher colour depth and modes. I think this will start X; then, if you can't get an optimal image, post here new xorg.conf and Xorg log; somebody will help you to tune Modeline and/or something else. * (If you need a really good assistance in creating xorg.conf, use Knoppix; Greg Lehey once recommended it on freebsd-questions@; this one is really different.) Nikola Le=C4=8Di=C4=87