Hey everyone,
I wrote a tutorial to help other people setting up multiseat using the new GDM and Ubuntu 10.04. However, this time I'm the one who needs help . I'm having troubles getting zaphod to work.
My understanding of zaphod is that it can run separate x-servers on separate randr-outputs. I read the manpage of radeon and I think this xorg.conf should work:
Consolekit starts GDM with the following options:
Why doesn't this work?
I wrote a tutorial to help other people setting up multiseat using the new GDM and Ubuntu 10.04. However, this time I'm the one who needs help . I'm having troubles getting zaphod to work.
My understanding of zaphod is that it can run separate x-servers on separate randr-outputs. I read the manpage of radeon and I think this xorg.conf should work:
Code:
Section "Monitor" Identifier "Monitor0" EndSection Section "Monitor" Identifier "Monitor1" EndSection Section "Screen" Identifier "Screen0" Monitor "Monitor0" Device "Card0" DefaultDepth 24 EndSection Section "Screen" Identifier "Screen1" Monitor "Monitor1" Device "Card1" DefaultDepth 24 EndSection Section "InputDevice" Identifier "keyboard0" Driver "evdev" Option "Device" "/dev/input/by-path/pci-0000:00:12.0-usb-0:1:1.0-event-kbd" EndSection Section "InputDevice" Identifier "mouse0" Driver "evdev" Option "ZAxisMapping" "4 5" Option "Device" "/dev/input/by-path/pci-0000:00:12.0-usb-0:2:1.0-event-mouse" EndSection Section "ServerLayout" Identifier "seat0" Screen 0 "Screen0" 0 0 InputDevice "mouse0" "CorePointer" InputDevice "keyboard0" "CoreKeyboard" EndSection Section "ServerLayout" Identifier "seat1" Screen 1 "Screen1" 0 0 EndSection Section "Device" Identifier "Card0" BusID "PCI:4:0:0" Driver "radeon" Option "ZaphodHeads" "DVI-0" Screen 0 EndSection Section "Device" Identifier "Card1" BusID "PCI:4:0:0" Driver "radeon" Option "ZaphodHeads" "DVI-1" Screen 1 EndSection Section "ServerFlags" Option "AutoAddDevices" "off" Option "AllowEmptyInput" "true" EndSection
Code:
Exec=/usr/bin/X $display -config /etc/xorg.conf.d_ms/Seats.conf -novtswitch -layout seat0 -verbose -auth $auth -nolisten tcp $vt and Exec=/usr/bin/X $display -config /etc/xorg.conf.d_ms/Seats.conf -novtswitch -layout seat1 -verbose -auth $auth -nolisten tcp $vt
Comment