scary_jeff said:
The resolution on the TV is lower than on the monitor; if I move the mouse to the right from the bottom right of the monitor, then move it left again, the pointer appears back on the monitor at the point where the bottom of the TV should be. Similarly, I can move the mouse a few inches to the right of the monitor, and then have to move it back the same distance to the left to get the pointer back on the monitor.
That's just the overscan - all TV's scale the picture so that the edges are slightly off the viewable area of the screen. This essentially hides the ragged edges and other stuff that would otherwise be displayed. Using Nvidia-settings there should be an overscan slider which will let you adjust this in realtime to get the most picture on your screen. It's unlikely you'll be able to get the whole desktop to display, so you might want to use the screen setup wizard in the Utilities / Setup screens in MythTV. This will at least enable you to size the MythTV GUI and playback to the visible portion of the screen. Beware, though that if you are running Mythbuntu with the standard xfce desktop (the black one), any resizing of the MythTV window will cause the toolbar / panel to sit on top of the window - this is a known bug, not sure it's been fixed yet. A workaround is to set the panel to 'Autohide' - works for me.
[edit] I tried booting the machine with only the TV plugged in; it showed the Mythbuntu loading progress bar, but the TV lost signal just after the bar got to 100% [/edit]
That's when your x-server start up. The card either can't detect the TV properly, or doesn't know what mode to use, so it will fall-back to the VGA-out. You probably need to try some of the xorg.conf options that force it to ignore these facts and just squirt the signal where you tell it.
The xorg logfile is a useful place to start, if there's a problem, it will tell you why it has defaulted to VGA.
cat /var/log/Xorg.0.log
Somthing like this in the device section of your xorg.conf (/etc/X11/xorg.conf) should help
Option "TVOutFormat" "COMPONENT"
Option "TVStandard" "PAL-B" #or NTSC, PAL-G etc. whatever's correct for where you are
Option "ConnectedMonitor" "TV"
Please Note Messing with your xorg.conf can render your system useless with no useable video output. Back it up first``` sudo cp /etc/X11/xorg.conf /etc/X11/xorg.bak
cp /etc/X11/xorg.bak /etc/X11/xorg.conf
then ```
exit
to return to the menu, and select 'continue normal boot'. You should now be back where you were before the changes.