I was able to get the native resolution (1366x768) on my Vizio GV42L through both the DVI and VGA outputs at the same time.<br><br>Here is the xorg.conf I use... (<a href="http://www.mythtv.org/wiki/index.php/Running_MythTV_Dual_Headed#PIP_Display_.28One_X_Server.2C_One_display.2C_Dual_head_video_card_with_a_desktop_on_each.29">http://www.mythtv.org/wiki/index.php/Running_MythTV_Dual_Headed#PIP_Display_.28One_X_Server.2C_One_display.2C_Dual_head_video_card_with_a_desktop_on_each.29</a>)<br>
<br>Maybe it will help:<br><br><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote"><pre>Section "ServerLayout"<br> Identifier "Multi-Head"<br>
Screen 0 "Desktop" 0 0<br> Screen 1 "MythTV" RightOf "Desktop"<br> InputDevice "Keyboard" "CoreKeyboard"<br> InputDevice "Mouse" "CorePointer"<br>
EndSection<br><br>Section "Files"<br> ModulePath "/usr/lib64/xorg/modules/extensions/nvidia"<br> ModulePath "/usr/lib64/xorg/modules/extensions"<br> ModulePath "/usr/lib64/xorg/modules"<br>
EndSection<br><br>Section "Module"<br> Load "dbe"<br> Load "extmod"<br> Load "fbdevhw"<br> Load "glx"<br> Load "record"<br>
Load "freetype"<br> Load "type1"<br> Load "v4l"<br>EndSection<br><br>Section "InputDevice"<br> Identifier "Keyboard"<br> Driver "kbd"<br>
Option "XkbModel" "pc105"<br> Option "XkbLayout" "us+inet"<br>EndSection<br><br>Section "InputDevice"<br> Identifier "Mouse"<br>
Driver "mouse"<br>EndSection<br><br>Section "ServerFlags"<br> Option "Xinerama" "0"<br>EndSection<br><br>Section "Device"<br> Identifier "GF7050_RGB"<br>
Driver "nvidia"<br> VendorName "NVIDIA Corporation"<br> BoardName "GeForce 7050 PV / NVIDIA nForce 630a"<br> BusID "PCI:0:18:0"<br>
Option "NvAGP" "2"<br> Option "UseEvents" "True"<br> Option "AddARGBGLXVisuals" "True"<br>
Option "ModeValidation" "NoWidthAlignmentCheck" # Important!!! need this option to use nvidia card at 1366 x 768<br> Option "ExactModeTimingsDVI" "True"<br>
Option "ModeValidation" "NoDFPNativeResolutionCheck"<br> Screen 0<br>EndSection<br><br>Section "Device"<br> Identifier "GF7050_DFP"<br>
Driver "nvidia"<br> VendorName "NVIDIA Corporation"<br> BoardName "GeForce 7050 PV / NVIDIA nForce 630a"<br> BusID "PCI:0:18:0"<br>
Option "NvAGP" "2"<br> Option "UseEvents" "True"<br> Option "AddARGBGLXVisuals" "True"<br>
Option "ModeValidation" "NoWidthAlignmentCheck" # Important!!! need this option to use nvidia card at 1366 x 768<br> Option "ExactModeTimingsDVI" "True"<br>
Option "ModeValidation" "NoDFPNativeResolutionCheck"<br> Screen 1<br>EndSection<br><br>Section "Monitor"<br> Identifier "GV42L"<br>
VendorName "VIZIO"<br> ModelName "GV42L"<br><br> HorizSync 31-70<br> VertRefresh 50-85<br><br> Modeline "1366x768@60.00" 85.5 1366 1494 1624 1798 768 770 776 795 -HSync +Vsync Interlace<br>
Modeline "768p@60.00" 85.5 1366 1494 1624 1798 768 770 776 795 -HSync +Vsync<br>EndSection<br><br>Section "Screen"<br> Identifier "Desktop"<br> Device "GF7050_RGB"<br>
Monitor "GV42L"<br> Option "ConnectedMonitor" "CRT-0,DFP-0" #Force the connected monitor since only one can be active at a time<br> Option "UseDisplayDevice" "CRT-0"<br>
DefaultDepth 24<br> SubSection "Display"<br> Viewport 0 0<br> Depth 24<br> Modes "1366x768@60.00"<br> EndSubSection<br>
EndSection<br><br>Section "Screen"<br> Identifier "MythTV"<br> Device "GF7050_DFP"<br> Monitor "GV42L"<br> Option "ConnectedMonitor" "CRT-0,DFP-0" #Force the connected monitor since only one can be active at a time<br>
Option "UseDisplayDevice" "DFP-0"<br> DefaultDepth 24<br> SubSection "Display"<br> Viewport 0 0<br> Depth 24<br>
Modes "768p@60.00"<br> EndSubSection<br>EndSection</pre></blockquote>