LinuxQuestions.org
Register a domain and help support LQ
Go Back   LinuxQuestions.org > Forums > Linux > Linux - General
User Name
Password
Linux - General This forum is for general Linux questions and discussion.
If it is Linux Related and doesn't seem to fit in any other forum then this is the place.

Notices

Tags used in this thread
Popular LQ Tags

Reply
 
Thread Tools
Old 05-09-2007, 01:47 PM   #1
dotancohen
Member
 
Registered: Dec 2004
Location: Haifa
Distribution: Fedora Core 4, Kubuntu
Posts: 216
Thanked: 0
Cannot enable proper screen resolution


[Log in to get rid of this advertisement]
I cannot enable 1680x1050 resolution on my Dell Inspiron E1505/6400 laptop. Although I have properly configured xorg.conf, neither Gnome nor KDE give me the option to choose 1680x1050.

Code:
[root@localhost ~]# cat /etc/X11/xorg.conf
# Xorg configuration created by system-config-display

Section "ServerLayout"
        Identifier     "single head configuration"
        Screen      0  "Screen0" 0 0
        InputDevice    "Keyboard0" "CoreKeyboard"
        InputDevice    "Synaptics" "CorePointer"
EndSection

Section "InputDevice"
        Identifier  "Keyboard0"
        Driver      "kbd"
        Option      "XkbModel" "pc105"
        Option      "XkbLayout" "us"
EndSection

Section "InputDevice"
        Identifier  "Synaptics"
        Driver      "synaptics"
        Option      "Device" "/dev/input/mice"
        Option      "Protocol" "auto-dev"
        Option      "Emulate3Buttons" "yes"
EndSection

Section "Monitor"

 ### Comment all HorizSync and VertSync values to use DDC:
        Identifier   "Monitor0"
        ModelName    "LCD Panel 1680x1050"
 ### Comment all HorizSync and VertSync values to use DDC:
        HorizSync    31.5 - 90.0
        VertRefresh  59.9 - 60.1
        Option      "dpms"
EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "1680x1050"
        EndSubSection
EndSection

[root@localhost ~]#

What must I do to enable this resolution? Thanks in advance.

Dotan Cohen

http://what-is-what.com/what_is/zip.html
http://lyricslist.com/lyrics/artist_.../200/five.html
dotancohen is offline     Reply With Quote
Old 05-09-2007, 03:26 PM   #2
osor
HCL Maintainer
 
Registered: Jan 2006
Distribution: (H)LFS, Gentoo
Posts: 2,434
Thanked: 24
Perhaps add a relevant modeline in the monitor section.

man 1 gtf
osor is offline     Reply With Quote
Old 05-12-2007, 07:50 AM   #3
dotancohen
Member
 
Registered: Dec 2004
Location: Haifa
Distribution: Fedora Core 4, Kubuntu
Posts: 216
Thanked: 0

Original Poster
What module would that be, Osor? I cannot seem to find anything relevant. Thanks.

Dotan Cohen

http://what-is-what.com/what_is/world_wide_web.html
http://technology-sleuth.com/long_an...dangerous.html
dotancohen is offline     Reply With Quote
Old 05-12-2007, 08:39 PM   #4
jay73
Senior Member
 
Registered: Nov 2006
Location: Belgium
Distribution: Ubuntu 8.04 / 9.04
Posts: 4,781
Thanked: 89
Are you sure your xorg.conf is properly configures? It seems to me that the HorizSync anc VertRefresh under section "Monitor" don't look right. I have a 19" LCD with 1280x1024 and I use 31-82 horizontal and 31-75 vertical; by comparison, your own vertical values are 59-60 - way too low for that kind of resolution if you ask me.
jay73 is offline     Reply With Quote
Old 05-12-2007, 09:08 PM   #5
osor
HCL Maintainer
 
Registered: Jan 2006
Distribution: (H)LFS, Gentoo
Posts: 2,434
Thanked: 24
It’s not a module, a modeline (a line describing one of your monitor’s modes). One of your problems might be the lack of a proper mode for your monitor. Usually modes are built-in or deduced from EDID, but occasionally, (especially for funny modelines) they’re not there. Here’s an example: suppose I want to enable a mode for 1680x1050 at a “60Hz” refresh rate. Then I would run:
Code:
$ gtf 1680 1050 60
  # 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
  Modeline "1680x1050_60.00"  147.14  1680 1784 1968 2256  1050 1051 1054 1087  -HSync +Vsync
Then, I would edit my xorg.conf
Code:
Section "Monitor"

 ### Comment all HorizSync and VertSync values to use DDC:
        Identifier   "Monitor0"
        ModelName    "LCD Panel 1680x1050"
 ### Comment all HorizSync and VertSync values to use DDC:
        HorizSync    31.5 - 90.0
        VertRefresh  59.9 - 60.1
        Option      "dpms"

        # 1680x1050 @ 60.00 Hz (GTF) hsync: 65.22 kHz; pclk: 147.14 MHz
        Modeline "1680x1050_60.00"  147.14  1680 1784 1968 2256  1050 1051 1054 1087  -HSync +Vsync

EndSection

Section "Device"
        Identifier  "Videocard0"
        Driver      "vesa"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "1680x1050_60.00"
        EndSubSection
EndSection
The green section is added (from the output of gtf), and the red section is modified to use the new modeline. HTH.
osor is offline  
Tag This Post
Reply With Quote
Old 05-12-2007, 09:13 PM   #6
osor
HCL Maintainer
 
Registered: Jan 2006
Distribution: (H)LFS, Gentoo
Posts: 2,434
Thanked: 24
Quote:
Originally Posted by jay73
I have a 19" LCD with 1280x1024 and I use 31-82 horizontal and 31-75 vertical; by comparison, your own vertical values are 59-60 - way too low for that kind of resolution if you ask me.
LCD monitors don’t have the same sort of measurements for “refresh rates” as CRT’s do. For example, I have an LCD that is currently running at 1440×900 at 56KHz horizontal frequency and 60Hz vertical frequency (those are exact numbers reported by the monitor itself).
osor is offline     Reply With Quote
Old 05-14-2007, 04:40 AM   #7
Wim Sturkenboom
Senior Member
 
Registered: Jan 2005
Location: Roodepoort, South Africa
Distribution: Slackware 10.1/10.2/12, Ubuntu 8.04 (upgraded from 6.06), Ubuntu Netbook Remix 9.04
Posts: 2,742
Thanked: 87
You're using the vesa driver; I don't think that that supports your resolution.
Wim Sturkenboom is offline     Reply With Quote

Reply

Bookmarks


Thread Tools

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
Get proper resolution on VX910 with SuSe 10.1 Open source ronin42 Linux - Hardware 0 08-28-2006 08:19 AM
Burning movies with proper resolution General Linux - General 1 02-27-2006 08:11 AM
default screen resolution smaller than max. resolution ?? Thoddy Linux - General 2 11-10-2005 02:33 AM
Unable to configure screen resolution for 15.2" LCD screen in Fedore Core 1 schu Linux - Newbie 3 01-02-2004 06:39 PM
Moniter is not going into proper resolution :( floyes Linux - Hardware 13 08-28-2003 08:01 AM


All times are GMT -5. The time now is 03:15 PM.

Main Menu
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
RSS2  LQ Podcast
RSS2  LQ Radio
Twitter: @linuxquestions
identi.ca: @linuxquestions
Facebook: @linuxquestions
Open Source Consulting | Domain Registration