From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by nuthatch.gentoo.org with esmtp (Exim 4.62) (envelope-from ) id 1HMDLK-0001Rd-VP for garchives@archives.gentoo.org; Wed, 28 Feb 2007 01:10:55 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.0/8.14.0) with SMTP id l1S19c4X000694; Wed, 28 Feb 2007 01:09:38 GMT Received: from mail (c-24-245-14-14.hsd1.mn.comcast.net [24.245.14.14]) by robin.gentoo.org (8.14.0/8.14.0) with ESMTP id l1S15AHN028490 for ; Wed, 28 Feb 2007 01:05:10 GMT Received: from pascal.spore.ath.cx (pascal.spore.ath.cx [192.168.1.100]) by mail (Postfix) with ESMTP id EBDC2643D for ; Tue, 27 Feb 2007 19:05:05 -0600 (CST) Date: Tue, 27 Feb 2007 19:05:05 -0600 From: Dan Farrell To: gentoo-user@lists.gentoo.org Subject: Re: [gentoo-user] Switched monitors, having resolution problems Message-ID: <20070227190505.75a13782@pascal.spore.ath.cx> In-Reply-To: <200702280154.29946.volker.armin.hemmann@tu-clausthal.de> References: <200702280048.09785.volker.armin.hemmann@tu-clausthal.de> <200702280154.29946.volker.armin.hemmann@tu-clausthal.de> Organization: Spore, Ltd. X-Mailer: Sylpheed-Claws 2.4.0 (GTK+ 2.10.6; x86_64-pc-linux-gnu) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-user@gentoo.org Reply-to: gentoo-user@lists.gentoo.org Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Archives-Salt: 4c391616-3655-42de-aaa8-97317fb7c4b4 X-Archives-Hash: a2a29d0cf11ecf642a634b1ad6fd046a On Wed, 28 Feb 2007 01:54:29 +0100 "Hemmann, Volker Armin" wrote: > On Mittwoch, 28. Februar 2007, Vlad Dogaru wrote: > > On 2/28/07, Hemmann, Volker Armin > > > wrote: > > > On Mittwoch, 28. Februar 2007, Vlad Dogaru wrote: > > > > Hello all, > > > > > > > > I have just switched monitors and X now starts in 640x480. I > > > > intend to make it work at 1280x1024, and have changed > > > > DefaultDepth and Modes lines in xorg.conf accordingly. The > > > > console works at 1024x768 as usual, but I have compiled that > > > > into the framebuffer. Any suggestions? > > > > > > how about not using modelines at all? > > > > I've tried commenting out the modeline, to no avail, and the > > DefaultDepth, also with no result. I've checked the logs and found > > nothing out of place. Attatched is my xorg.conf, should anyone find > > it meaningful. > > > > Vlad > > > > > -- > > > gentoo-user@gentoo.org mailing list > > well, you set no mode at all - modelines are something different ;) > > Section "Screen" > Identifier "Screen0" > Device "Card0" > Monitor "Monitor0" > #DefaultDepth 24 > SubSection "Display" > Viewport 0 0 > Depth 1 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 4 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 8 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 15 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 16 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 24 > #Modes "1280x1024" > EndSubSection > EndSection > > change that too something like: > > > Section "Screen" > Identifier "Screen0" > Device "Card0" > Monitor "Monitor0" > #DefaultDepth 24 > SubSection "Display" > Viewport 0 0 > Depth 1 > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 4 > Modes "1280x1024" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 8 > Modes "1280x1024" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 15 > Modes "1280x1024" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 16 > Modes "1280x1024" "1024x768" "800x600" "640x480" > EndSubSection > SubSection "Display" > Viewport 0 0 > Depth 24 > Modes "1280x1024" "1024x768" "800x600" > "640x480" EndSubSection > EndSection > > And add this to your modules section: > Load "ddc" I find myself in this situation often, and usually, looking up Horizontal Sync and Vertical Refresh frequencies for the make and model of the monitor (rarely tricky) and then setting them in xorg.conf solves the problem. For example: Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" HorizSync 31.5-64.3 VertRefresh 50-90 Modeline "1024x768" 85.00 1024 1032 1152 1360 768 784 787 823 EndSection In this case I also used a modeline because the HorizSync and VertRefresh settings didn't work at 1024x768 without it. -- gentoo-user@gentoo.org mailing list