Hi Rich,
I already had that file listed in /opt/.filetool.lst but thanks for letting me know about command line backup and not having to reboot.
So I did some more googling as you mentioned about Radeon 7000/VE and came across
http://www.farhadsaberi.com/linux_freebsd/2010/11/dual-Monitor-ATI-Radeon-RV100-QY-Radeon.htmlI modified my xorg.conf file using his conf file and tweaked it as I have 1 vga and 1 dvi and using tiny core paths. Here is my new conf file;
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/local/lib/X11/modules"
FontPath "/usr/local/lib/X11/fonts/misc/"
FontPath "/usr/local/lib/X11/fonts/TTF/"
FontPath "/usr/local/lib/X11/fonts/OTF"
FontPath "/usr/local/lib/X11/fonts/Type1/"
FontPath "/usr/local/lib/X11/fonts/75dpi"
EndSection
Section "Module"
Load "glx"
Load "dri"
Load "dri2"
Load "extmod"
Load "dbe"
Load "freetype"
Load "record"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
EndSection
Section "Monitor"
Identifier "Monitor1"
EndSection
Section "Device"
Identifier "Card0"
Driver "ati"
EndSection
Section "DRI"
Mode 0666
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Modes "1280x1024"
Virtual 2960 1050
EndSubSection
EndSection
Now when I rebooted I got past my original error and both screens came on (mirrored) with X desktop. I felt like I was back to square one and wondered if my original default config file would have just done the same? Anyway, I'm not going to change anything as it is back!
The next thing following that web page was the xrandr command (slightly changed for my setup);
xrandr --output DVI-0 --mode 1280x1024 --pos 0x0 --output VGA-0 --mode 1280x1024 --pos 1280x0
And it worked! Yay, I had two separate screens able to move windows between them!
The next problem I have is to keep this screen layout upon reboot. I have tried putting the xrandx command in the opt/bootlocal.sh and/or opt/bootsync.sh files with no luck. Could another extension or some other script be overwriting this command after them? Or is there some trick to putting this command line into these boot files?
I feel so close now.....looking forward to anybody who can help.