Toon posts:

[Slackware 8.1]Monitor Problemen.

Pagina: 1
Acties:

Verwijderd

Topicstarter
Goedenavond,

Ik heb vandaag slackware 8.1 geinstaleerd en het bevalt me supers.... Me usb muis werkt dat is voor mij heel belangerijk, Maar er is 1 ding dat mijn monitor op 1152x864 op 75 Hz draait en daar word ik niet echt blij van. (Zit nu op 1024x768 op 100 Hz DAt kan ik beter verdragen) Ik weet dat mijn monitor op 1152x864 op 100 hz kan, In Windows tenminste. Het is een dell monitor een: Dell D1025HE Color Monitor. Dit is de link met de specificaties:
code:
1
http://www.google.nl/search?q=cache:lp8uv1ocNlsC:www.vtdata.cz/obchod/monitory/D1025HE.html+Dell+D1025HE+Color+Monitor&hl=nl&ie=UTF8

Nu is mijn vraag hoe krijg ik hem op 100 hz? Ik heb xf86config gedraaid en de monitor waarden ingevuld maar ik word van 75,85 Hz niet bepaald blij.

  • GeeMoney
  • Registratie: April 2002
  • Laatst online: 23:00
weet je zeker dat je de juiste Hsync en Vsync waarden hebt ingevuld????
Linux pakt auto, hoogst mogelijke frequentie op de resolutie die je dan draait namelijk... dus als die waaren goed staan, zou die gewoon 100Hz moeten pakken kijk voor de zekerheid ff naar regeltje zoals:

Section "Monitor"
Identifier "Generic Monitor"
HorizSync 30-96
VertRefresh 50-160
Option "DPMS"

en verander de getallen naar de waardes van jou monitor

Verwijderd

Topicstarter
Dat is het lullige die staan goed:? Weet jij mischien niet de waarde voor 100 hz Bij die link staat Line: 31.5 to 92 kHz en
Refresh: 50 to 150 Hz.

En dat ie automatisch de hoogste waarden pakt gebeurt bij mij nooit.. Toen ik nog een iiyama had die op 800x600 #100Hz kon pakte ie die 'm ook maar op 85:S

Verwijderd

Topicstarter
Lol! Bij horisync heb ik nu 31.5, 92 gezet nu start ie op met de resolutie 1280x1024 @85 Hz... En dat wil ik niet:(

  • GeeMoney
  • Registratie: April 2002
  • Laatst online: 23:00
Op donderdag 20 juni 2002 20:59 schreef et203 het volgende:
Lol! Bij horisync heb ik nu 31.5, 92 gezet nu start ie op met de resolutie 1280x1024 @85 Hz... En dat wil ik niet:(
die getallen staan NIET goed ingesteld :)
kijk even in je monitor handleiding daar staan de waardes, is namelijk voor iedere monitor anders.
en als je de resolutie 1280x1024 niet wilt, dan moet je die verwijderen uit het lijstje met de kleurendiepte die je gebruikt voorbeeld:

dit is het oude:



SubSection "Display"
Depth 24
Modes "1600x1200" "1280x1024" "1280x960" "1152x864" "1024x768" "800x600" "640x480"
EndSubSection



dit word het daarna:

SubSection "Display"
Depth 24
Modes "1280x1024"
"1280x960" "1152x864" "1024x768" "800x600" "640x480"


en dan nog ff kijken wat die Hsync enzo meot wezen wat ik al eerder zei.

(dit voorbeeld is voor mijn monitor, ik draai dan ook 1600x1200 ) jij haalt dus 1280x1024 weg ipv de 1600x1200 die ik weghaal :)

Verwijderd

Topicstarter
Okay ik zal het laten zien ik ziet u die link daarboven dat zijn mijn monitor waarden, Zat geen boekie bij heb 'm van iemand gehad. Hier dan het boeiende gedeelte van mn xf86config:
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
# **********************************************************************
# Monitor section
# **********************************************************************

# Any number of monitor sections may be present

Section "Monitor"

    Identifier  "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    HorizSync   31.5, 92

#    HorizSync  30-64      # multisync
#    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    VertRefresh 50-150

EndSection


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
# **********************************************************************
# Graphics device section
# **********************************************************************

# Any number of graphics device sections may be present

# Standard VGA Device:

Section "Device"
    Identifier  "Standard VGA"
    VendorName  "Unknown"
    BoardName   "Unknown"

# The chipset line is optional in most cases.  It can be used to override
# the driver's chipset detection, and should not normally be specified.

#    Chipset    "generic"

# The Driver line must be present.  When using run-time loadable driver
# modules, this line instructs the server to load the specified driver
# module.  Even when not using loadable driver modules, this line
# indicates which driver should interpret the information in this section.

    Driver     "vga"
# The BusID line is used to specify which of possibly multiple devices
# this section is intended for.  When this line isn't present, a device
# section can only match up with the primary video device.  For PCI
# devices a line like the following could be used.  This line should not
# normally be included unless there is more than one video device
# intalled.

#    BusID  "PCI:0:10:0"

#    VideoRam   256

#    Clocks     25.2 28.3

EndSection

# Device configured by xf86config:

Section "Device"
    Identifier  "NVIDIA GeForce"
    Driver  "nvidia"
    #VideoRam    32768
    # Insert Clocks lines here if appropriate
EndSection


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
# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen 1"
    Device  "NVIDIA GeForce"
    Monitor     "My Monitor"
    DefaultDepth 24

    Subsection "Display"
      Depth  8
      Modes  "640x480" "800x600" "1024x768" "1280x1024"
      ViewPort    0 0
    EndSubsection
    Subsection "Display"
      Depth  16
      Modes  "640x480" "800x600" "1024x768" "1280x1024"
      ViewPort    0 0
    EndSubsection
    Subsection "Display"
      Depth  24
      Modes  "1024x768"
      ViewPort    0 0
    EndSubsection
EndSection

Ik begrijp je verhaal niet helemaal:?

  • GeeMoney
  • Registratie: April 2002
  • Laatst online: 23:00
welke distro draai je in godsnaam?
en what the hell doe je met 4 verschillende Hsync rates lol.
welke distro draai je enw elke xfree86 ?

Verwijderd

Topicstarter
# HorizSync 30-64 # multisync
# HorizSync 31.5, 35.2 # multiple fixed sync frequencies
# HorizSync 15-25, 30-50 # multiple ranges of sync frequencies

Die hekjes heten commentaar en zitten standaard bij slackware 8.1;) Xfree 4.2.0 etc.

  • simon
  • Registratie: Maart 2002
  • Laatst online: 20:52
Op donderdag 20 juni 2002 21:42 schreef The_Dart het volgende:
welke distro draai je in godsnaam?
en what the hell doe je met 4 verschillende Hsync rates lol.
welke distro draai je enw elke xfree86 ?
Hij draait slack, zie boven.

|>


Verwijderd

En bij Slack 8.1 zit XFree 4.2.0 .

  • deadinspace
  • Registratie: Juni 2001
  • Laatst online: 23:10

deadinspace

The what goes where now?

Op donderdag 20 juni 2002 21:16 schreef et203 het volgende:
code:
1
    HorizSync   31.5, 92
Hyphen, niet komma. Nu zal X alleen resoluties/refreshrates proberen met Horizontal sync rates die of precies 31.5 of precies 92 zijn, terwijl je monitor ook alle waarden ertussenin aankan.

  • NeOTheMaTriXM
  • Registratie: April 2001
  • Laatst online: 11-07 20:31
Op donderdag 20 juni 2002 22:02 schreef deadinspace het volgende:

[..]

Hyphen, niet komma. Nu zal X alleen resoluties/refreshrates proberen met Horizontal sync rates die of precies 31.5 of precies 92 zijn, terwijl je monitor ook alle waarden ertussenin aankan.
klopt als een boom :P

HorizSync 30-64

je moet hem met een streepje op schrijven

Verwijderd

Topicstarter
Dat deed ik als eerste maar... Toen boete hij ook automatischo p 85 op standaard windows zonder nvidia drivers kan ik meteen 100 hz kiezen na installatie nvidia drivers moet ik aanvinken modes die hij mischien niet aankan (Maar hij kan die modes aan:) ) En... Als je op die link kijk dan staat er ook op 1024x768 #85Hz maar ik weet zeker dat hij op 1024x768 op 100 Hz en ik wil op 1152x864 op 100 hz ik weet dat die reso prima werkt op 100 Hz...

  • deadinspace
  • Registratie: Juni 2001
  • Laatst online: 23:10

deadinspace

The what goes where now?

Welke HorizSync en VertRefresh heb je nu in je config staan? En welke resolutie als default?

Verwijderd

Topicstarter
Ik heb nu dit:
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
51
52
53
54
55
56
Section "Monitor"

    Identifier  "My Monitor"

# HorizSync is in kHz unless units are specified.
# HorizSync may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    HorizSync   31.5-92

#    HorizSync  30-64      # multisync
#    HorizSync  31.5, 35.2    # multiple fixed sync frequencies
#    HorizSync  15-25, 30-50  # multiple ranges of sync frequencies

# VertRefresh is in Hz unless units are specified.
# VertRefresh may be a comma separated list of discrete values, or a
# comma separated list of ranges of values.
# NOTE: THE VALUES HERE ARE EXAMPLES ONLY.  REFER TO YOUR MONITOR'S
# USER MANUAL FOR THE CORRECT NUMBERS.

    VertRefresh 50-150

EndSection

# **********************************************************************
# Screen sections
# **********************************************************************

# Any number of screen sections may be present.  Each describes
# the configuration of a single screen.  A single specific screen section
# may be specified from the X server command line with the "-screen"
# option.
Section "Screen"
    Identifier  "Screen 1"
    Device  "NVIDIA GeForce"
    Monitor     "My Monitor"
    DefaultDepth 24

    Subsection "Display"
      Depth  8
      Modes  "640x480" "800x600" "1024x768" "1280x1024"
      ViewPort    0 0
    EndSubsection
    Subsection "Display"
      Depth  16
      Modes  "640x480" "800x600" "1024x768" "1280x1024"
      ViewPort    0 0
    EndSubsection
    Subsection "Display"
      Depth  24
      Modes  "1024x768"
      ViewPort    0 0
    EndSubsection
EndSection

Op het monitor specificatie blaadje/site... Staat ook 1024x768 #85Hz maar hij kan op 100 ik denk dat op dat blaadje standaard fabrieksinstellingen zijn. Nu staat ie standaard op 1024x768 en hij kan op 1152x864 op 100 hz en dat wil ik ook graag.

  • deadinspace
  • Registratie: Juni 2001
  • Laatst online: 23:10

deadinspace

The what goes where now?

Ik vraag me af of hij met die HorizSync veel hoger dan dat kan... Misschien dat die HorizSync in die specificatie niet goed zijn, of misschien dat je monitor in Windows out-of-spec draait...

Probeer die '92' van de HorizSync eens geleidelijk te verhogen.
Verder kun je met het progje 'modeline' misschien wat bereiken...

Verwijderd

Topicstarter
Dat heb ik gedaan, Het mag niet baten......

Verwijderd

Topicstarter
Met dat modeline generator heb ik gedaan maar dan word het beeldscherm groen:P
Pagina: 1