[ubuntu] Widescreen resolutie overlapt door virtual screen

Pagina: 1
Acties:

Onderwerpen


Acties:
  • 0 Henk 'm!

  • Slaiter
  • Registratie: Juni 2001
  • Niet online

Slaiter

Firesnake

Topicstarter
Ik heb een 19" widescreen lcd monitor waarop een resolutie van 1440x900 het mooiste is. Ik heb vandaag weer eens Ubuntu (fiesty) op mijn pc geknalt en mbv read-edid de modeline voor mijn monitor opgezocht, welke dan ook volgens de Xorg log zou moeten zorgen voor de juiste resolutie.

Maar niets is minderwaar, dezondanks dat volgens de log de resolutie 1440x900 validated is word hij weggedrukt door een virtuele resolutie van 1440x1024 wat als resultaat heeft dat ik niet optimaal gebruik van mijn scherm kan maken (o.a. roundom (te)geblurde fonts)

Ik heb nergens in mijn Xorg.conf iets staan mbt virtual resolution en ik snap ook niet waarom hij dit uberhaubt pakt, omdat de resolutie die ik nodig heb (1440x900) in het berijk ligt van de config, videokaart (GF6200) en ook van de monitor.

Mischien dat ik iets over het hoofd zie, daarom zal ik ook even relevante delen van de config en de log hier plaatsen in de hoop dat iemand me misschien op het juiste pad kan brengen.

xorg.conf:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Section "Device"
        Identifier      "Generic Video Card"
        Driver          "nvidia"
        Busid           "PCI:1:0:0"
        Option          "AddARGBVisuals"        "True"
        Option          "AddARGBGLXVisuals"     "True"
        Option          "NoLogo"        "True"
EndSection

Section "Monitor"
        # Block type: 2:0 3:fd
        # Block type: 2:0 3:fc
        Identifier "19''"
        VendorName "TVT"
        ModelName "19''"
        # Block type: 2:0 3:fd
        HorizSync 24-80
        VertRefresh 50-75
        # Max dot clock (video bandwidth) 140 MHz
        # Block type: 2:0 3:fc
        # Block type: 2:0 3:fe
        # DPMS capabilities: Active off:no  Suspend:no  Standby:no

        Mode    "1440x900"      # vfreq 59.887Hz, hfreq 55.935kHz
                DotClock        106.500000
                HTimings        1440 1520 1672 1904
                VTimings        900 903 909 934
                Flags   "-HSync" "-VSync"
        EndMode
        # Block type: 2:0 3:fd
        # Block type: 2:0 3:fc
        # Block type: 2:0 3:fe
EndSection

Section "Screen"
        Identifier      "Default Screen"
        Device          "Generic Video Card"
        Monitor         "19''"
        Defaultdepth    24
        SubSection "Display"
                Depth   16
                Modes           "1440x900" "1280x1024"  "1280x960"      "1152x864"      "1024x768"      "832x624"       "800x600"       "640x480"
                ViewPort        0 0
        EndSubSection
        SubSection "Display"
                Depth   24
                Modes           "1440x900" "1280x1024"  "1280x960"      "1152x864"      "1024x768"      "832x624"       "800x600"       "640x480"
                ViewPort        0 0
        EndSubSection
EndSection


Xorg.log:
code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
(--) NVIDIA(0):     TVT 19'' (CRT-0)
(--) NVIDIA(0): TVT 19'' (CRT-0): 400.0 MHz maximum pixel clock
(II) NVIDIA(0): Assigned Display Device: CRT-0
(II) NVIDIA(0): Validated modes:
(II) NVIDIA(0):     "1440x900"
(II) NVIDIA(0):     "1280x1024"
(II) NVIDIA(0):     "1280x960"
(II) NVIDIA(0):     "1152x864"
(II) NVIDIA(0):     "1024x768"
(II) NVIDIA(0):     "832x624"
(II) NVIDIA(0):     "800x600"
(II) NVIDIA(0):     "640x480"
(II) NVIDIA(0): Virtual screen size determined to be 1440 x 1024
(--) NVIDIA(0): DPI set to (89, 87); computed from "UseEdidDpi" X config
(--) NVIDIA(0):     option
(--) Depth 24 pixmap format is 32 bpp
(II) do I need RAC?  No, I don't.

Acties:
  • 0 Henk 'm!

  • skr
  • Registratie: Juli 2003
  • Laatst online: 03-09 21:04

skr

Tegenwoordig met het moderne spul hoef je al die mode lines niet meer op te geven.

Mijn config pakt automatisch de resolutie van welk scherm ik er ook aanplak. Probeer dat ook eens.


code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
Section "Monitor"
        Identifier   "Monitor0"
        VendorName   "Monitor Vendor"
        ModelName    "Monitor Model"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Card0"
        Monitor    "Monitor0"
        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
        EndSubSection
EndSection

Acties:
  • 0 Henk 'm!

  • Slaiter
  • Registratie: Juni 2001
  • Niet online

Slaiter

Firesnake

Topicstarter
thx nu werkt het wel gelukkig :)

Was in de verondersteling dat modelines ed nog steeds nodig was, wel appart dat het niet werkt als ik het hard configureer, maar oke het werkt nu en dat is het belangrijkste :)