LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 10-01-2005, 04:31 PM   #1
sadarax
Member
 
Registered: Sep 2005
Distribution: Ubuntu
Posts: 252

Rep: Reputation: 30
KDE Screen Resolutions - 1280x960


I was wondering how you get KDE to accept the resolution 1280x960? On previous installs of my linux distro, I was presented with the option for 1280x960, but its no longer there. How do I get KDE to let me choose that option again?

I am using xfree86. Whatever kernel and whatever video drivers I run, the option never appears. I have loaded the nvidia drivers into my kernel successfully, and nothing changes. (Though different issues occur, but those are for other threads).

My system spec's and info:

Video Card: Geforce 6800GT 256MB DDR PCI Express x16 Video Card
Motherboard: EPOX EP-9NPA+Ultra NF4 ULTRA RT
CPU: AMD Athlon 64 X2 4200+ Manchester 2000MHz FSB Socket 939 Dual Core
RAM: CORSAIR XMS 1GB 184-Pin DDR SDRAM DDR 400 (PC 3200) Unbuffered System

KDE: version 3.3.2-1. I cannot upgrade to 3.4.
Linux Distro: Mepis Linux, based on Debian
 
Old 10-01-2005, 09:25 PM   #2
z3nith
Member
 
Registered: Jan 2005
Posts: 40

Rep: Reputation: 15
I can't remember where i read this but most new monitors support the vesa ddc spec. Your card will query your monitor for info and you can see which one your driver has picked in the file /var/log/XFree86.0.log or /var/log/Xorg.0.log.

Higher resolutions may have to manually added to the Modes option in the Screen/Display section. E.g.
DefaultDepth 16 <---- pick your default depth
...
SubSection "Display"
Depth 16
Modes "1280x1024" "1024x768""800x600" "640x480"
EndSubSection

The ctl-atl-keypad+ or ctl-alt-keypad- key sequence cycle through the modes listed here. Modes that cant be supported with your card/monitor combo will be dropped.
 
Old 10-02-2005, 12:57 AM   #3
sadarax
Member
 
Registered: Sep 2005
Distribution: Ubuntu
Posts: 252

Original Poster
Rep: Reputation: 30
Thank you for the information. I did go and look through the log file, however any changes I made seemed to make no difference. The file seemed to overwrite anything I did with each xserver restart.

So, is there another way to tell my xfree86 to allow that resolution and those color depths? I have tried 'dpkg-reconfigure xserver-xfree86', gone through the options and selected appropriately. I enabled the resolution '1280x960' and set the default bit depth to 24, but no visible change seemed to happen.
 
Old 10-02-2005, 05:08 AM   #4
sadarax
Member
 
Registered: Sep 2005
Distribution: Ubuntu
Posts: 252

Original Poster
Rep: Reputation: 30
I found some interesting information in my file:

/etc/X11/XF86Config-4

Would this be a place to start configuring?
 
Old 10-02-2005, 05:33 AM   #5
z3nith
Member
 
Registered: Jan 2005
Posts: 40

Rep: Reputation: 15
Yes this is the config file.

http://www.xfree86.org/current/XF86Config.5.html
 
Old 10-02-2005, 05:35 AM   #6
z3nith
Member
 
Registered: Jan 2005
Posts: 40

Rep: Reputation: 15
Look for this section

Section "Screen"
Identifier "Your Screen Identifier"
Device "Your Graphic Device Identifier"
Monitor "Your Monitor Identifier"
DefaultDepth 24 # or whatever you default is, usually 16 or 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" # etc...
EndSubSection
EndSection

The default resolution is the one highest one it comes to. Try adding your res here. Be sure to make a permanent backup of your file before editing. You can swithc between screen resolutions by pressing ctrl alt and + or - on the num keypad.

Last edited by z3nith; 10-02-2005 at 05:37 AM.
 
Old 10-02-2005, 06:47 AM   #7
ZeroKun
LQ Newbie
 
Registered: May 2004
Posts: 23

Rep: Reputation: 15
Add the modes for the screen, and if you have a bunch of modes on your monitor section, delete them, but keep the refresh rates. This allowed me to raise my resolutions beyond 1024x768.
 
Old 10-02-2005, 03:07 PM   #8
sadarax
Member
 
Registered: Sep 2005
Distribution: Ubuntu
Posts: 252

Original Poster
Rep: Reputation: 30
Thanks, I was able to finally solve a problem I have had for a long time. I moved my monitor out of 16-bit. My god that was terrible. But I still have the problem that I cannot get it to use the resolution 1280x960. Here are the settings from my XF86Config-4:

Section "Monitor"
Identifier "Monitor0"
VendorName "IBM"
ModelName "unknown"
#Option "DPMS" "true"
HorizSync 30.0 - 82.0 # Warning: This may fry old Monitors
VertRefresh 50.0 - 70.0 # Very conservative. May flicker.
EndSection

This section had a ton of ModeLines, all of which I removed.

Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultColorDepth 24
SubSection "Display"
Depth 24
Modes "1600x1200" "1280x960" "1024x768" "800x600"
EndSubSection

Though now the highest resolution I can go is 1280x1024, which is not even on that list. So while I am doing better, I still cannot get my system to use the correct resolution. I have even set the maximum resolution to just:

Modes "1280x960" "1024x768" "800x600"

But KDE still uses 1280x1024. No where in the XF86Config is there the text "1280x1024", so I do not know how it can use this.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
changing screen resolutions tlarkin SUSE / openSUSE 17 11-10-2005 04:15 PM
Screen resolutions blues.... shankariyer Fedora 1 08-18-2004 02:27 AM
Screen Resolutions satanic_linux Slackware 7 05-20-2004 08:01 AM
KDE Screen Resolutions QuadMonk Linux - General 2 04-24-2002 02:41 PM
Booting in various screen resolutions RBLynch Linux - Newbie 6 02-21-2002 06:00 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 12:38 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration