Sinds enkele dagen heb ik een Dell 20" LCD. Deze werkt prima onder Windows XP op 1680x1050.
Maar ik werk de laatste tijd steeds vaker onder Linux, Fedora Core 5. Alleen het probleem is dat ik het niet werkend krijg op 1680x1050
Ik heb met google gezocht naar mogelijk oplossingen, maar ben er nog geen een tegen gekomen.
http://ractor.org/archives/2005/04/dell_2005fpw_an.php
http://www.wiredfool.com/...escreenLcdsAndUbuntuLinux
http://www.anandtech.com/...s/showdoc.aspx?i=2400&p=2
Deze heb ik gebruikt om de modline te berekenen:
http://xtiming.sourceforge.net/cgi-bin/xtiming.pl
Maar wat ik ook doe, ik krijg niet de resolutie 1680x1050.
Wel soms 19??x1440, maar dan moet ik over mijn beeld heen scrollen.
Heeft iemand hier meer ervaring mee? Of een een werkende opstelling in 1680x1050?
Specs:
Ik heb een Shuttle SB83G5
P4 3,2 GHz
2x 512MB ram
onboard video

Maar ik werk de laatste tijd steeds vaker onder Linux, Fedora Core 5. Alleen het probleem is dat ik het niet werkend krijg op 1680x1050
Ik heb met google gezocht naar mogelijk oplossingen, maar ben er nog geen een tegen gekomen.
http://ractor.org/archives/2005/04/dell_2005fpw_an.php
http://www.wiredfool.com/...escreenLcdsAndUbuntuLinux
http://www.anandtech.com/...s/showdoc.aspx?i=2400&p=2
Deze heb ik gebruikt om de modline te berekenen:
http://xtiming.sourceforge.net/cgi-bin/xtiming.pl
Maar wat ik ook doe, ik krijg niet de resolutie 1680x1050.
Wel soms 19??x1440, maar dan moet ik over mijn beeld heen scrollen.
Heeft iemand hier meer ervaring mee? Of een een werkende opstelling in 1680x1050?
Specs:
Ik heb een Shuttle SB83G5
P4 3,2 GHz
2x 512MB ram
onboard video
Intel Graphics Media Accelerator 900 (GMA900)
with PCI-E x1 improved bandwidth
features 333MHz graphics core
DX8/DX9 support and enhanced 3D performance
Dynamic Video Memory Technology (DVMT) 3.0
shared Memory max. 256MB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
| # XFree86 4 configuration created by pyxf86config Section "ServerLayout" Identifier "Default Layout" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" # Multiple FontPath entries are allowed (they are concatenated together) # By default, a font server independent of the X server is # used to render fonts. FontPath "unix/:7100" EndSection Section "Module" Load "dbe" Load "extmod" Load "fbdevhw" Load "glx" Load "record" Load "freetype" Load "type1" Load "dri" EndSection Section "InputDevice" # Specify which keyboard LEDs can be user-controlled (eg, with xset(1)) # Option "Xleds" "1 2 3" # To disable the XKEYBOARD extension, uncomment XkbDisable. # Option "XkbDisable" # To customise the XKB settings to suit your keyboard, modify the # lines below (which are the defaults). For example, for a non-U.S. # keyboard, you will probably want to use: # Option "XkbModel" "pc102" # If you have a US Microsoft Natural keyboard, you can use: # Option "XkbModel" "microsoft" # # Then to change the language, change the Layout setting. # For example, a german layout can be obtained with: # Option "XkbLayout" "de" # or: # Option "XkbLayout" "de" # Option "XkbVariant" "nodeadkeys" # # If you'd like to switch the positions of your capslock and # control keys, use: # Option "XkbOptions" "ctrl:swapcaps" # Or if you just want both to be control, use: # Option "XkbOptions" "ctrl:nocaps" # Identifier "Keyboard0" Driver "kbd" Option "XkbModel" "pc105" Option "XkbLayout" "us" Option "XkbVariant" "intl" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "IMPS/2" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5" Option "Emulate3Buttons" "yes" EndSection Section "Monitor" ### Comment all HorizSync and VertSync values to use DDC: Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Dell 2005FPW (Digital)" DisplaySize 430 270 ### Comment all HorizSync and VertSync values to use DDC: HorizSync 30.0 - 83.0 # VertRefresh 56.0 - 75.0 VertRefresh 60 Option "dpms" Modeline "1680x1050@60" 154.20 1680 1712 2296 2328 1050 1071 1081 1103 # Modeline "1680x1050@75" 210.42 1680 1712 2504 2536 1050 1070 1083 1103 EndSection Section "Device" Identifier "Videocard0" Driver "i810" VendorName "Videocard vendor" BoardName "Intel Corporation 82915G/GV/910GL Express Chipset Family Graphics Controller" EndSection Section "Screen" Identifier "Screen0" Device "Videocard0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Viewport 0 0 Depth 16 Modes "800x600" "640x480" EndSubSection SubSection "Display" Viewport 0 0 Depth 24 Modes "1680x1050" "1280x1024" "1280x800" EndSubSection EndSection Section "DRI" Group 0 Mode 0666 EndSection |