well if your cloning it's using DISPLAY=:0.0 for both, i.e. if you move your mouse on monitor means the same movement is seen on the clone/TV. The normal behaviour is if you have DISPLAY=:0.1 running your display device, prior to configuration, if it supports DPMS, will come out of standby and wait to be drawn on if you like, not sure how TV would handle DPMS flags.
ok Im going to have a go. first of all backup your xorg.conf in /etc/X11/xorg.conf
I'm trying to make your monitor DISPLAY=:0.0 and your TV DISPLAY=:0.1. The monitor should appear left of the TV, i.e. mouse crosses over on right edge of monitor. I'm no X-guru but I will try to follow my xorg.conf
NB. I'm not assuming anything here, I will try to be thorough, please do not be offended if I describe trivial steps
. Backup your X config so that you can recover if all hell breaks loose. I make no guarantees that this works
i.e.
Code:
sudo mv xorg.conf.18.07.2011 xorg.conf
modify xorg.conf to reflect the following, I've dropped loads of stuff here, but it's just for testing (your refresh rates don't looks right, find out what they should be, 60 monitor , 60 TV?):
Code:
Section "ServerLayout"
Identifier "amdcccle Layout"
Screen 0 "amdcccle-Screen[1]-1" 0 0
Screen "amdcccle-Screen[1]-0" 1920 0
EndSection
Section "ServerFlags"
Option "Xinerama" "off"
EndSection
Section "Monitor"
Identifier "0-DFP1"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Option "PreferredMode" "1920x1080"
Option "TargetRefresh" "60"
#Option "Position" "0 0"
Option "Rotate" "normal"
Option "Disable" "false"
EndSection
Section "Monitor"
Identifier "0-CRT2"
Option "VendorName" "ATI Proprietary Driver"
Option "ModelName" "Generic Autodetecting Monitor"
Option "DPMS" "true"
Option "PreferredMode" "1680x1050"
Option "TargetRefresh" "60"
#Option "Position" "0 0"
Option "Rotate" "normal"
Option "Disable" "false"
EndSection
Section "Device"
Identifier "amdcccle-Device[1]-0"
Driver "fglrx"
Option "Monitor-CRT2" "0-CRT2"
BusID "PCI:1:0:0"
EndSection
Section "Device"
Identifier "amdcccle-Device[1]-1"
Driver "fglrx"
Option "Monitor-DFP1" "0-DFP1"
BusID "PCI:1:0:0"
EndSection
Section "Screen"
Identifier "amdcccle-Screen[1]-0"
Device "amdcccle-Device[1]-0"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "amdcccle-Screen[1]-1"
Device "amdcccle-Device[1]-1"
DefaultDepth 24
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
drop x (Ctrl + Alt + F2)
login and run:
should light up gnome/or whatever wm you've configured on the monitor.
if all hell breaks loose, get to the terminal by killing x, if its not dead already and run
Code:
sudo mv xorg.conf xorg.conf.18.07.2011
If you reach this stage then great, your almost there:
running
Code:
DISPLAY=:0.1 exec gnome-session
should instantiate a second gnome session on your TV.
if all is ok, you can go back and add other stuff you want.
Will try to help
. X issues can still cause nightmares! ... and didn't ubuntu get rid of xorg.conf?