xlin84 |
|
Темы:
22
Сообщения:
142
Участник с: 20 декабря 2008
|
Понимаю что вопрос может уже избит, но все-таки не смог найти ответа и разобраться. У меня гаснет монитор после установки nvidia драйвера. Если конфигурю с помощью Xorg –configure, все работает, но с разрешением 640х480 :) Что бы поставить 1024х768 я истыкал вдоль и поперек xorg.conf!! Так и не смог сменить. Если делать через nvidia-setting, то монитор гаснет и все. Где то, что то не тянет моник. Моник у меня ЖК Syscom msc-535 Section "ServerLayout" Identifier "X.org Configured" Screen 0 "Screen0" 0 0 InputDevice "Mouse0" "CorePointer" InputDevice "Keyboard0" "CoreKeyboard" EndSection Section "Files" ModulePath "/usr/lib/xorg/modules" FontPath "/usr/share/fonts/misc" FontPath "/usr/share/fonts/100dpi:unscaled" FontPath "/usr/share/fonts/75dpi:unscaled" FontPath "/usr/share/fonts/TTF" FontPath "/usr/share/fonts/Type1" EndSection Section "Module" Load "dbe" Load "glx" Load "record" Load "dri" Load "dri2" Load "extmod" EndSection Section "InputDevice" Identifier "Keyboard0" Driver "kbd" EndSection Section "InputDevice" Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/input/mice" Option "ZAxisMapping" "4 5 6 7" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" EndSection Section "Device" Identifier "Card0" Driver "nvidia" VendorName "nVidia Corporation" BoardName "NV34 [GeForce FX 5500]" BusID "PCI:1:0:0" 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 |
mango |
|
Темы:
43
Сообщения:
1521
Участник с: 18 декабря 2008
|
Попробуй в секцию Monitor добавть Option “DPMS” “true” Если не получится - будем искать дальше. Когда то я сталкивался с этой проблемой. |
xlin84 |
|
Темы:
22
Сообщения:
142
Участник с: 20 декабря 2008
|
Не сработало.Section "Monitor" Identifier "Monitor0" VendorName "Monitor Vendor" ModelName "Monitor Model" Option "DPMS" "true" EndSection Section "Screen" Identifier "Screen0" Device "Card0" Monitor "Monitor0" SubSection "Display" Viewport 0 0 Depth 24 EndSubSection EndSection # Load "dri" # Load "dri2" |
Nebulosa |
|
Темы:
10
Сообщения:
830
Участник с: 05 марта 2009
|
Я решил проблему показа 1152 на 864 на 100Гц (CRT монитор) так:... Section "Monitor" ... Modeline "1152x864_100.00" 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync EndSection ... Section "Screen" ... SubSection "Display" Depth 24 Viewport 0 0 Modes "1152x864_100.00" EndSubSection EndSection Строчку Modeline получил так: $ gtf 1152 864 100 # 1152x864 @ 100.00 Hz (GTF) hsync: 91.50 kHz; pclk: 143.47 MHz Modeline “1152x864_100.00” 143.47 1152 1232 1360 1568 864 865 868 915 -HSync +Vsync ;) |
xlin84 |
|
Темы:
22
Сообщения:
142
Участник с: 20 декабря 2008
|
Все заработало с таким конфигом. Всем спасибо за ответ.Section "ServerLayout" Identifier "Layout0" Screen 0 "Screen0" InputDevice "Keyboard0" "CoreKeyboard" InputDevice "Mouse0" "CorePointer" EndSection Section "Files" EndSection Section "Module" Load "dbe" Load "extmod" Load "type1" Load "freetype" Load "glx" EndSection Section "InputDevice" # generated from default Identifier "Mouse0" Driver "mouse" Option "Protocol" "auto" Option "Device" "/dev/psaux" Option "Emulate3Buttons" "no" Option "ZAxisMapping" "4 5" EndSection Section "InputDevice" # generated from default Identifier "Keyboard0" Driver "kbd" EndSection Section "Monitor" Identifier "Monitor0" VendorName "Unknown" ModelName "Unknown" HorizSync 30.0 - 110.0 VertRefresh 50.0 - 150.0 Modeline "1024x768_70.00" 76.16 1024 1080 1192 1360 768 769 772 800 -HSync +Vsync Option "DPMS" EndSection Section "Device" Identifier "Device0" Driver "nvidia" VendorName "NVIDIA Corporation" EndSection Section "Screen" Identifier "Screen0" Device "Device0" Monitor "Monitor0" DefaultDepth 24 SubSection "Display" Depth 24 # Modes "1024x768" "800x600" "640x480" Modes "1024x768_70.00" EndSubSection EndSection |
xlin84 |
|
Темы:
22
Сообщения:
142
Участник с: 20 декабря 2008
|
Всем спасибо. Все работает O0 |