Я отчаянно пытаюсь настроить свою систему на Debian Wheezy с VGA-картой NVIDIA Quadro 600 и двумя мониторами (два монитора абсолютно одинаковы, одного производителя, размера и номера модели). Один монитор подключен через HDMI, а другой с помощью кабеля VGA . В то время как монитор HDMI отлично работает с разрешением 1920x1080, монитор VGA дает сбой. Что я сделал до сих пор:
Я следил за установкой драйвера nvidia с веб-сайта Debian и установил nvidia-glx и необходимые ядра (заголовки DKMS и Linux).
xrandr
также не может добавить 1920x1080--addmode
к желаемому выводу (будучи монитором VGA).nvidia-settings
также не включает мое желаемое разрешение для монитора VGA.Я попытался вручную добавить 1920x1080 в xorg.conf, хотя это усиливает ситуацию, добавляя некоторые новые разрешения, такие как 1024x768, но не добавляет желаемые 1920x1080.
Вот мой файл /etc/X11/xorg.conf
если он помогает:
1 # nvidia-xconfig: X configuration file generated by nvidia-xconfig
2 # nvidia-xconfig: version 331.49 (buildmeister@swio-display-x86-rhel47-10) Wed Feb 12 21:00:07 PST 2014
3
4 Section "ServerLayout"
5 Identifier "Layout0"
6 Screen 0 "Screen0"
7 InputDevice "Keyboard0" "CoreKeyboard"
8 InputDevice "Mouse0" "CorePointer"
9 EndSection
10
11 Section "Files"
12 EndSection
13
14 Section "InputDevice"
15 # generated from default
16 Identifier "Mouse0"
17 Driver "mouse"
18 Option "Protocol" "auto"
19 Option "Device" "/dev/psaux"
20 Option "Emulate3Buttons" "no"
21 Option "ZAxisMapping" "4 5"
22 EndSection
23
24 Section "InputDevice"
25 # generated from default
26 Identifier "Keyboard0"
27 Driver "kbd"
28 EndSection
29
30 Section "Monitor"
31 Identifier "DVI-I-0"
32 VendorName "Unknown"
33 ModelName "Unknown"
34 Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
35 EndSection
36
37 Section "Monitor"
38 Identifier "DP-0"
39 VendorName "Unknown"
40 ModelName "Unknown"
41 Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
42 Option "RightOf" "DVI-I-0"
43 EndSection
44
45
46 Section "Device"
47 Identifier "Device0"
48 Driver "nvidia"
49 VendorName "NVIDIA Corporation"
50 EndSection
51
52 Section "Screen"
53 Identifier "Screen0"
54 Device "Device0"
55 Monitor "Monitor0"
56 DefaultDepth 24
57 SubSection "Display"
58 Depth 24
59 Modes "1920x1080"
60 EndSubSection
61 EndSection
62
Любая помощь с благодарностью.