Hi,<br>
<br>
You can use ctrl-alt-F1, and so on to switch to another VT then run:<br>
<br>
Xorg -ac -nolisten tcp -screen Screen1 :1<br>
<br>
And have a xorg.conf like this:<br>
<br>
Section "Module"<br>
Load "dbe"<br>
SubSection "extmod"<br>
Option "omit xfree86-dga"<br>
EndSubSection<br>
EndSection<br>
<br>
#Section "Extensions"<br>
# Option "Composite" "enable"<br>
#EndSection<br>
<br>
Section "Files"<br>
FontPath "/usr/X11R6/lib/X11/fonts/misc/"<br>
EndSection<br>
<br>
Section "InputDevice"<br>
Identifier "Keyboard0"<br>
Driver "kbd"<br>
Option "XkbModel" "pc105"<br>
Option "XkbLayout" "se"<br>
EndSection<br>
<br>
Section "InputDevice"<br>
Identifier "Mouse0"<br>
Driver "mouse"<br>
Option "Protocol" "ImPS/2"<br>
Option "ZAxisMapping" "4 5"<br>
Option "Emulate3Buttons" "false"<br>
Option "Device" "/dev/input/mice"<br>
EndSection<br>
<br>
Section "Device"<br>
Identifier "Graphics0"<br>
Driver "radeon"<br>
#Option "RenderAccel" "true"<br>
#Option "AccelMethod" "EXA"<br>
EndSection<br>
<br>
Section "Device"<br>
Identifier "Graphics1"<br>
Driver "vesa"<br>
BusId "PCI:2:9:0"<br>
EndSection<br>
<br>
Section "Monitor"<br>
Identifier "Monitor0"<br>
ModelName "VP171s"<br>
VendorName "ViewSonic"<br>
EndSection<br>
<br>
Section "Monitor"<br>
Identifier "Monitor1"<br>
ModelName "KV-32LS65E"<br>
VendorName "SONY"<br>
EndSection<br>
<br>
Section "Screen"<br>
Identifier "Screen0"<br>
Device "Graphics0"<br>
Monitor "Monitor0"<br>
DefaultDepth 24<br>
<br>
Subsection "Display"<br>
Depth 24<br>
Modes "1280x1024"<br>
EndSubsection<br>
EndSection<br>
<br>
Section "Screen"<br>
Identifier "Screen1"<br>
Device "Graphics1"<br>
Monitor "Monitor1"<br>
DefaultDepth 24<br>
<br>
Subsection "Display"<br>
Depth 24<br>
Modes "1024x768"<br>
EndSubsection<br>
EndSection<br>
<br>
Section "ServerLayout"<br>
Identifier "Layout0"<br>
Screen "Screen0"<br>
InputDevice "Mouse0" "CorePointer"<br>
InputDevice "Keyboard0" "CoreKeyboard"<br>
EndSection<br>
<br>
This is one way to do it are probably other ways as well, just some<br>
ideas. This is how I run a second X server that displays on my TV so I<br>
can watch movies with xine. I have 2 radeon cards.<br>
<br>
The second X server you run can be Xorg from CVS installed<br>
into/usr/local/xorg, if you want to test new features for example.