beim Stöbern im Internet hab ich folgendes Tutorial gefunden *Multiseat* und war sofort davon begeistert. Wäre es nicht genial z.B. Open Arena an einem Rechner bloß mit zwei Mäusen, 2 Tastaturen und 2 Monitoren zu spielen?
Da ich hier in meinem Laptop eine NVIDIA Geforece 7600 Go habe welche einen VGA Anschluss besitzt, dachte ich mir das dies doch auch mit meinem Rechner möglich wäre.
Kurzentschlossen hab ich auch mal meine eigene modifizierte xorg.conf geschrieben:
- Code: Alles auswählen
### General Sections ###
Section "ServerFlags"
Option "DefaultServerLayout" "alltogether"
Option "AllowMouseOpenFail" "true"
EndSection
Section "ServerLayout"
Identifier "alltogether"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "Files"
RgbPath "/usr/lib/X11/rgb"
EndSection
Section "Module"
Load "dbe"
Load "extmod"
Load "type1"
Load "freetype"
Load "glx"
EndSection
### One of these sections per seat ###
Section "ServerLayout"
Identifier "seat0"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mouse1"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard0"
Driver "kbd"
Option "Device" "/dev/input/event4"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
Option "XkbModel" "pc105"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Device0"
Monitor "Monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1280x800" "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "Device"
Identifier "Device0"
Driver "nvidia"
Screen 0
Option "NoLogo" "true"
VendorName "NVIDIA Corporation"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Unknown"
ModelName "Unknown"
DisplaySize 313 235
HorizSync 30.0 - 52.0
VertRefresh 50.0 - 60.0
Option "DPMS"
EndSection
###Seat1###
Section "ServerLayout"
Identifier "seat1"
Screen 1 "Screen1" 0 0
InputDevice "Mouse1" "CorePointer"
InputDevice "Keyboard1" "CoreKeyboard"
EndSection
Section "InputDevice"
# generated from default
Identifier "Mouse1"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mouse2"
Option "Emulate3Buttons" "no"
Option "ZAxisMapping" "4 5"
EndSection
Section "InputDevice"
# generated from default
Identifier "Keyboard1"
Driver "kbd"
Option "Device" "/dev/input/event4"
Option "XkbLayout" "de"
Option "XkbVariant" "nodeadkeys"
Option "XkbModel" "pc105"
EndSection
Section "Screen"
Identifier "Screen1"
Device "Device1"
Monitor "Monitor1"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1024x768" "800x600" "640x480"
EndSubSection
EndSection
Section "Device"
Identifier "Device1"
Driver "nvidia"
BusID "PCI:1:0:0"
Screen 1
Option "NoLogo" "true"
VendorName "NVIDIA Corporation"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Unknown"
ModelName "Unknown"
HorizSync 30.0 - 98.0
VertRefresh 50.0 - 160.0
Option "DPMS"
EndSection
Das Problem ist ich wusste nicht wie ich meine Grafikkarte ansprechen sollte.
lspci spuckte nämlich nur folgenden Eintrag für meine Grafikkarte aus:
- Code: Alles auswählen
01:00.0 VGA compatible controller: nVidia Corporation G70 [GeForce Go 7600] (rev a1)
Damit war die die BusID klar nämlich "PCI:1:0:0". Doch wie kann ich die Grafikkarte jetzt für den zweiten Monitor ansprechen?
Wenn mir hier jemand weiterhelfen würde wäre das wirklich sehr gut denn dann wüsste ich z.B. auch wie ich Dual Head mit Xinerama oder dem Clone Modus zum Laufen bringen kann (was unter Windows übrigens funktioniert hat).