I'm trying to configure Debian to have a spanning desktop with two monitors. One is VGA, and the other is Display Port. They are both with the video hardware on the motherboard, an Intel 4 Series Chipset Graphics Controller.
This is the output I get when I do a query on xrandr:
Code:
Screen 0: minimum 640 x 480, current 1600 x 1200, maximum 1600 x 1200
default connected 1600x1200+0+0 0mm x 0mm
1600x1200 61.0*
1280x1024 76.0
1024x768 76.0
800x600 73.0
640x480 73.0
Note that it does not list the VGA and the Display Port outputs separately, there is only "default", and the output is cloned on both of my displays.
When I went to examine my xorg.conf, I found it rather ambiguous looking, like the system didn't understand the hardware or doesn't have the proper driver. Here it is:
Code:
Section "InputDevice"
Identifier "Generic Keyboard"
Driver "kbd"
Option "XkbRules" "xorg"
Option "XkbModel" "pc104"
Option "XkbLayout" "us"
EndSection
Section "InputDevice"
Identifier "Configured Mouse"
Driver "mouse"
EndSection
Section "Device"
Identifier "Configured Video Device"
EndSection
Section "Monitor"
Identifier "Configured Monitor"
EndSection
Section "Screen"
Identifier "Default Screen"
Monitor "Configured Monitor"
EndSection
Does it need a driver specific to my video hardware in order to detect two outputs? How can I edit my xorg.conf for dual head? Any assistance would be greatly appreciated.