<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://linupedia.org/wiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Haveaniceday</id>
	<title>Linupedia.org - Benutzerbeiträge [de]</title>
	<link rel="self" type="application/atom+xml" href="https://linupedia.org/wiki/mediawiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Haveaniceday"/>
	<link rel="alternate" type="text/html" href="https://linupedia.org/opensuse/Spezial:Beitr%C3%A4ge/Haveaniceday"/>
	<updated>2026-04-29T07:56:53Z</updated>
	<subtitle>Benutzerbeiträge</subtitle>
	<generator>MediaWiki 1.31.0</generator>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=24846</id>
		<title>Partition eines Festplattenimage mounten</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=24846"/>
		<updated>2008-04-03T13:39:41Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Script zur Ermittlung der Mountoptionen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Partition eines Festplattenimage mounten ==&lt;br /&gt;
&lt;br /&gt;
Wer sich von Festplatten oder partitionierten Wechseltatenträgern Image erstellt, kann eventuell einmal in die Verlegenheit kommen, dass er einige Daten eines der Filesysteme dieses Image benötigt. Nun müsste man ja das Image erst wieder komplett zurück auf eine Platte schreiben, und dann erst könnte man die entsprechende Partition mounten. Wenn es sich nicht um ein komprimiertes Image handelt, ist es aber auch möglich über ein [http://linux.die.net/man/8/losetup Loop-Device] und speziellen Optionen von [http://linux.die.net/man/8/mount mount] einzelne Partitionen innerhalb eines Image selbst zu mounten. ''(Ein komprimiertes Image müsste dazu erst wieder dekomprimiert werden.)'' Man benötigt dazu einen so genannten '''Offset'''-Wert als Mountoption. Dieser Wert gibt an, ab welcher Position im Image sich der Beginn dieser Partition befindet. Ermitteln kann man diesen Offset mit Hilfe der Partitionstabelle die man mit [http://linux.die.net/man/8/fdisk fdisk] aus einem Image ermitteln kann.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp #fdisk -l platte.image &lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&lt;br /&gt;
Disk platte.image: 0 MB, 0 bytes&lt;br /&gt;
255 heads, 63 sectors/track, 0 cylinders&lt;br /&gt;
Units = cylinders of 16065 * 512 = 8225280 bytes&lt;br /&gt;
&lt;br /&gt;
     Device   Boot      Start         End      Blocks   Id  System&lt;br /&gt;
platte.image1   *           1           4       32098+   6  FAT16&lt;br /&gt;
platte.image2               5         125      971932+   5  Extended&lt;br /&gt;
platte.image5               5          50      369463+  83  Linux&lt;br /&gt;
platte.image6              51         125      602406   83  Linux&lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Script zur Ermittlung der Mountoptionen ===&lt;br /&gt;
&lt;br /&gt;
Im folgenden wird ein Script '''help-mount-image.sh''' vorgestellt, dass den Offset für den Mountbefehl ermittelt und auch gleich die richtigen Mountbefehle für alle belegten Partitionen (1 bis 9 soweit vorhanden) des jeweiligen Images ausgibt.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash &lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
# Author: haveaniceday&lt;br /&gt;
# Version: 1, Last updated: 12/2007&lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
 &lt;br /&gt;
 # fdisk finden &lt;br /&gt;
 PATH=&amp;quot;/sbin:$PATH&amp;quot; &lt;br /&gt;
 if [ $# -lt 1 ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;usage: ${0##*/} &amp;lt;image&amp;gt;&amp;quot; &lt;br /&gt;
         exit 1 &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 IMAGE=$1 &lt;br /&gt;
 if [ ! -f $IMAGE ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;Warnung, $IMAGE ist kein File&amp;quot; &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 # tr -d '*' =&amp;gt; bootflag entfernen &lt;br /&gt;
 LANG=C fdisk -lu $IMAGE  2&amp;gt;&amp;amp;1 | tr -d '*' | grep &amp;quot;$IMAGE[a-z0-9]&amp;quot; | while read part start end blocks id rest &lt;br /&gt;
 do &lt;br /&gt;
         echo &lt;br /&gt;
         echo &amp;quot;$read $part $start $end $blocks $id $rest&amp;quot; &lt;br /&gt;
         case $id in &lt;br /&gt;
         5|f|85) echo &amp;quot;Ignoriere extended partition&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         82) echo &amp;quot;Ignoriere Swap&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         *) &lt;br /&gt;
           ;; &lt;br /&gt;
         esac &lt;br /&gt;
 &lt;br /&gt;
         let offset=$start*512 &lt;br /&gt;
         echo mount -o loop,ro,offset=$offset $IMAGE /mnt &lt;br /&gt;
 done &lt;br /&gt;
 exit 0 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Die Benutzung ist simpel, einfach das Script mit dem Image als Option aufrufen, die entsprechende Partition aussuchen und mit dem vom Script ausgegebenen Mountbefehl nach '''/mnt''' mounten.&amp;lt;br&amp;gt;&lt;br /&gt;
(''In wenigen Einzelfällen kann es eventuell notwendig werden die Mountoptionen entsprechend dem Filesystemtype und dessen Eigenschaften anzupassen.'') Der mount-Befehl muss als root eingegeben&lt;br /&gt;
werden. Andere Benutzer haben keine Erlaubnis für so einen mount.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Beispiel einer Konsolausgabe Imagedatei ist '''platte.image''' im aktuellen Verzeichnis:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp # ./help-mount-image.sh platte.image &lt;br /&gt;
&lt;br /&gt;
 platte.image1 63 64259 32098+ 6 FAT16&lt;br /&gt;
mount -o loop,ro,offset=32256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image2 64260 2008124 971932+ 5 Extended&lt;br /&gt;
Ignoriere extended partition&lt;br /&gt;
&lt;br /&gt;
 platte.image5 64323 803249 369463+ 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image6 803313 2008124 602406 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=411296256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Linux:/data1/tmp # mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
Linux:/data1/tmp # mount | grep /mnt&lt;br /&gt;
/data1/tmp/platte.image on /mnt type ext3 (ro,loop=/dev/loop0,offset=32933376)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quellen und weiterführende Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.linux-club.de/viewtopic.php?t=79797 Orginalbeitrag im Forum] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;!-- Mit freundlicher Genehmigung von [[Benutzer:haveaniceday|haveaniceday]] --&amp;gt;&lt;br /&gt;
[[Partition|zurück zu Partition]]&lt;br /&gt;
[[Category:Konsole]]&lt;br /&gt;
[[Category:Partitionen]]&lt;br /&gt;
[[Category:Scripte]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=24845</id>
		<title>Partition eines Festplattenimage mounten</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=24845"/>
		<updated>2008-04-03T13:37:55Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Script zur Ermittlung der Mountoptionen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Partition eines Festplattenimage mounten ==&lt;br /&gt;
&lt;br /&gt;
Wer sich von Festplatten oder partitionierten Wechseltatenträgern Image erstellt, kann eventuell einmal in die Verlegenheit kommen, dass er einige Daten eines der Filesysteme dieses Image benötigt. Nun müsste man ja das Image erst wieder komplett zurück auf eine Platte schreiben, und dann erst könnte man die entsprechende Partition mounten. Wenn es sich nicht um ein komprimiertes Image handelt, ist es aber auch möglich über ein [http://linux.die.net/man/8/losetup Loop-Device] und speziellen Optionen von [http://linux.die.net/man/8/mount mount] einzelne Partitionen innerhalb eines Image selbst zu mounten. ''(Ein komprimiertes Image müsste dazu erst wieder dekomprimiert werden.)'' Man benötigt dazu einen so genannten '''Offset'''-Wert als Mountoption. Dieser Wert gibt an, ab welcher Position im Image sich der Beginn dieser Partition befindet. Ermitteln kann man diesen Offset mit Hilfe der Partitionstabelle die man mit [http://linux.die.net/man/8/fdisk fdisk] aus einem Image ermitteln kann.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp #fdisk -l platte.image &lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&lt;br /&gt;
Disk platte.image: 0 MB, 0 bytes&lt;br /&gt;
255 heads, 63 sectors/track, 0 cylinders&lt;br /&gt;
Units = cylinders of 16065 * 512 = 8225280 bytes&lt;br /&gt;
&lt;br /&gt;
     Device   Boot      Start         End      Blocks   Id  System&lt;br /&gt;
platte.image1   *           1           4       32098+   6  FAT16&lt;br /&gt;
platte.image2               5         125      971932+   5  Extended&lt;br /&gt;
platte.image5               5          50      369463+  83  Linux&lt;br /&gt;
platte.image6              51         125      602406   83  Linux&lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Script zur Ermittlung der Mountoptionen ===&lt;br /&gt;
&lt;br /&gt;
Im folgenden wird ein Script '''help-mount-image.sh''' vorgestellt, dass den Offset für den Mountbefehl ermittelt und auch gleich die richtigen Mountbefehle für alle belegten Partitionen (1 bis 9 soweit vorhanden) des jeweiligen Images ausgibt.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash &lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
# Author: haveaniceday&lt;br /&gt;
# Version: 1, Last updated: 12/2007&lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
 &lt;br /&gt;
 # fdisk finden &lt;br /&gt;
 PATH=&amp;quot;/sbin:$PATH&amp;quot; &lt;br /&gt;
 if [ $# -lt 1 ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;usage: ${0##*/} &amp;lt;image&amp;gt;&amp;quot; &lt;br /&gt;
         exit 1 &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 IMAGE=$1 &lt;br /&gt;
 if [ ! -f $IMAGE ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;Warnung, $IMAGE ist kein File&amp;quot; &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 # tr -d '*' =&amp;gt; bootflag entfernen &lt;br /&gt;
 LANG=C fdisk -lu $IMAGE  2&amp;gt;&amp;amp;1 | tr -d '*' | grep &amp;quot;$IMAGE[0-9]&amp;quot; | while read part start end blocks id rest &lt;br /&gt;
 do &lt;br /&gt;
         echo &lt;br /&gt;
         echo &amp;quot;$read $part $start $end $blocks $id $rest&amp;quot; &lt;br /&gt;
         case $id in &lt;br /&gt;
         5|f|85) echo &amp;quot;Ignoriere extended partition&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         82) echo &amp;quot;Ignoriere Swap&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         *) &lt;br /&gt;
           ;; &lt;br /&gt;
         esac &lt;br /&gt;
 &lt;br /&gt;
         let offset=$start*512 &lt;br /&gt;
         echo mount -o loop,ro,offset=$offset $IMAGE /mnt &lt;br /&gt;
 done &lt;br /&gt;
 exit 0 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Die Benutzung ist simpel, einfach das Script mit dem Image als Option aufrufen, die entsprechende Partition aussuchen und mit dem vom Script ausgegebenen Mountbefehl nach '''/mnt''' mounten.&amp;lt;br&amp;gt;&lt;br /&gt;
(''In wenigen Einzelfällen kann es eventuell notwendig werden die Mountoptionen entsprechend dem Filesystemtype und dessen Eigenschaften anzupassen.'') Der mount-Befehl muss als root eingegeben&lt;br /&gt;
werden. Andere Benutzer haben keine Erlaubnis für so einen mount.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Beispiel einer Konsolausgabe Imagedatei ist '''platte.image''' im aktuellen Verzeichnis:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp # ./help-mount-image.sh platte.image &lt;br /&gt;
&lt;br /&gt;
 platte.image1 63 64259 32098+ 6 FAT16&lt;br /&gt;
mount -o loop,ro,offset=32256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image2 64260 2008124 971932+ 5 Extended&lt;br /&gt;
Ignoriere extended partition&lt;br /&gt;
&lt;br /&gt;
 platte.image5 64323 803249 369463+ 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image6 803313 2008124 602406 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=411296256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Linux:/data1/tmp # mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
Linux:/data1/tmp # mount | grep /mnt&lt;br /&gt;
/data1/tmp/platte.image on /mnt type ext3 (ro,loop=/dev/loop0,offset=32933376)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quellen und weiterführende Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.linux-club.de/viewtopic.php?t=79797 Orginalbeitrag im Forum] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;!-- Mit freundlicher Genehmigung von [[Benutzer:haveaniceday|haveaniceday]] --&amp;gt;&lt;br /&gt;
[[Partition|zurück zu Partition]]&lt;br /&gt;
[[Category:Konsole]]&lt;br /&gt;
[[Category:Partitionen]]&lt;br /&gt;
[[Category:Scripte]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23531</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23531"/>
		<updated>2008-01-06T21:55:47Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Hinweise zur Erstellung der xorg.conf */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.Wenn dass jemand mit Gnome Konfigurationsahnung ergänzen könnte wäre das schön.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
Achtung, das unten ist aus meinem &amp;quot;Gedächtnis&amp;quot; beschreiben. Ich hab hoffentlich nichts vergessen. Falls etwas fehlt: ergänze es bitte.&lt;br /&gt;
Wenn es so funktioniert hat: Entferne bitte diesen Hinweis.&lt;br /&gt;
&lt;br /&gt;
Die Konfiguration [[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]] ist das Ergebnis.&lt;br /&gt;
Seat1 arbeitet mit einem 1920x1200 und einem 1280x1024 Bildschirm.&lt;br /&gt;
Beide haben eine getrennte KDE-Session, die aber mit einem Login&lt;br /&gt;
gestartet wird.&lt;br /&gt;
&lt;br /&gt;
Seat2 sind 2 Bildschirme mit je 1280x1024. Diese Bildschirme werden als eine Session genutzt.&lt;br /&gt;
&lt;br /&gt;
*Grundlage für alle Versuche unten&lt;br /&gt;
**Der Rechner sollte im Runlevel 3 gestartet werden. ( Keine graphische Oberfläche )&lt;br /&gt;
**Login als root =&amp;gt; Sehr vorsichtig sein, was man tut. Man könnte theoretisch alles löschen/kaputt machen.&lt;br /&gt;
**Versuche mit einer bestimmten Konfiguration gehen z.B. für einen X-Server :1 (Karte 1) mit der Layoutsektion &amp;quot;Layout[seat2]&amp;quot; so:&lt;br /&gt;
**:X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
**Ohne -layout ... wird die Sektion Layout[all] aus /etc/X11/xorg.conf genutzt.&lt;br /&gt;
**Ein gestarteter X-Server lässt sich mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;Backspace&amp;gt; beenden.&lt;br /&gt;
**Wenn ein X-Server gestartet ist kommt man mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;F1-Funktionstaste&amp;gt; z.B. in die erste Terminalsession (F1).&lt;br /&gt;
**Zum X-Server kommt man aus einer Terminalsession mit &amp;lt;alt&amp;gt;+&amp;lt;F7&amp;gt; bzw. &amp;lt;alt&amp;gt;+&amp;lt;F8&amp;gt; zu einem X-Server mit dem Parameter vt8 gestarteten X-Server zurück.&lt;br /&gt;
**Protokolle des X-Servers werden in /var/log/Xorg.&amp;lt;Karte&amp;gt;.log also im Beispiel oben /var/log/Xorg.1.log abgelegt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Nutze z.B. sax2 um die Graphikkarten zu erkennen.&lt;br /&gt;
#:sax2 -p&lt;br /&gt;
#:Chip: 0  is -&amp;gt; NVidia GeForce FX 5200 (0x0322)  00:08:0 0x10de 0x0322 PCI nv&lt;br /&gt;
#:Chip: 1  is -&amp;gt; NVidia GeForce4 Ti 4200 with AGP8X 01:00:0 0x10de 0x0281 AGP nv&lt;br /&gt;
&lt;br /&gt;
#Seat1: (primäre, z.B. AGP Karte )&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c1&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat1&lt;br /&gt;
#Seat2:&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c0&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat2&lt;br /&gt;
#Grundkonfiguration&lt;br /&gt;
#:Nimm die Datei /etc/X11/xorg.conf.seat1 als Kopie für /etc/X11/xorg.conf&lt;br /&gt;
#Ändere die Identifier/Namen, etc. von folgenden Sektionen in xorg.conf.seat2 damit sich diese von den wahrscheinlich gleichen Namen in xorg.conf.seat1 unterscheiden.&lt;br /&gt;
#:Section &amp;quot;Modes&amp;quot; Identifier in eindeutige Namen, z.B. Auflösung &amp;quot;Mode1280&amp;quot;. Achtung die Namen müssen in der Gesamtdatei eindeutig sein. Man kann aber bei gleichen Bildschirmen auch eine einzige Section &amp;quot;Modes&amp;quot; mit nur einem Namen verwenden.&lt;br /&gt;
#:Section &amp;quot;Monitor&amp;quot; Identifier in  z.B. &amp;quot;SEAT2-rightscreen&amp;quot;, &amp;quot;SEAT2-leftscreen&amp;quot;. Die UseModes &amp;quot;...&amp;quot; nicht vergessen auf die Werte von oben anzupassen.&lt;br /&gt;
#:Section &amp;quot;Device&amp;quot; eindeutig für Identifier. Achtung: die Screen &amp;quot;0&amp;quot; oder Screen &amp;quot;1&amp;quot; Werte beziehen sich auf die Karte. Also nicht Screen &amp;quot;2&amp;quot; und Screen &amp;quot;3&amp;quot; verwenden. Bitte auch die BusID &amp;quot;PCI:...&amp;quot; zu der Section &amp;quot;Device&amp;quot;. &lt;br /&gt;
#:Section &amp;quot;Screen&amp;quot; eindeutig für Device, Identifier, Monitor (die o.a. Namen von den Änderungen in der Section &amp;quot;Monitor&amp;quot;, &amp;quot;Device&amp;quot; müssen dazu passen).&lt;br /&gt;
#:Section &amp;quot;ServerLayout&amp;quot; eindeutig für Identifier z.B. &amp;quot;Layout[seat2]&amp;quot;. Ergänze hier auch die Option &amp;quot;IsolateDevice&amp;quot; mit der passenden PCI-Adresse und evtl. die Screen 0/1 Namen.&lt;br /&gt;
#Jetzt sind wir soweit diese Änderungen zu Testen. Mouse und Keyboard kommen später dran.&lt;br /&gt;
#:Starte den X-Server für die &amp;quot;Seat2&amp;quot; Konfiguration mit X :1 -sharevts -br vt8 -layout Layout[seat2] -config /etc/X11/xorg.conf.seat2&lt;br /&gt;
#:Schau was an Fehlermeldungen kommt. Das Konfigurieren klappt bestimmt nicht auch anhieb. :) /var/log/Xorg.0.log ist dabei hilfreich. Falls es doch auf Anhieb mit der zweiten Karte klappt: herzlichen Glückwunsch, X-Server wie oben beschrieben mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;backspace&amp;gt; beenden.&lt;br /&gt;
#Jetzt sind Tastatur und Maus dran. Steck die zweite Tastatur (USB) und die zweite Maus an, wenn noch nicht geschehen. Die Befehle um die Devices zu finden sind:&lt;br /&gt;
#:ls -l /dev/input/by-id&lt;br /&gt;
#:ls -l /dev/input/by-path&lt;br /&gt;
#:Bei der Section &amp;quot;InputDevice&amp;quot; für die Mouse kann man jetzt die Option &amp;quot;Device&amp;quot; /dev/input/by-path/...&amp;quot; eingeben. Leider geht dieses mit by-patch nicht für das Keyboard. Die Section &amp;quot;InputDevice&amp;quot; für das Keyboard muss mit Option &amp;quot;Device&amp;quot; &amp;quot;/dev/input/event...&amp;quot; auf ein &amp;quot;event&amp;quot; zeigen. Folge also /dev/input/by-id/..keyboard.. und nimm das passende event?, also z.B. im Beispiel event3.&lt;br /&gt;
#: Passe die &amp;quot;Identifier&amp;quot; Namen für Keyboard und Mouse in xorg.conf.seat2 an. (Section &amp;quot;InputDevice&amp;quot; und in Section &amp;quot;ServerLayout&amp;quot; die Benutzung )&lt;br /&gt;
#Teste jetzt wie oben ( Starte X-Server :1...) ob z.B. _nur_ die richtige Maus eindeutig den Zeiger im X-Server bewegt. (Achtung, falls später die Mouse oder das Keyboard nicht gehen: Nach einem Boot mit den eingesteckten Komponenten (USB-Keyboard,USB-Mouse) könnten diese geräte einen anderen Namen als beim Anstecken im Laufenden Betrieb erhalten (Speziell das Keyboard, welches über /dev/input/event... läuft.&lt;br /&gt;
#Änderungen in /etc/X11/xorg.conf  ( für &amp;quot;seat1&amp;quot; )&lt;br /&gt;
#:Passe InputDevice für Keyboard und Mouse mit der Option &amp;quot;Device&amp;quot; &amp;quot;/dev/input...&amp;quot; an, wie oben für xorg.conf.seat2 . Vergiss nicht die Eindeutigen Namen auch in Layout[all] einzutragen.&lt;br /&gt;
#Wenn das alles geklappt hat sind wir fast fertig! Füge die Konfiguration von xorg.conf.seat2 zu xorg.conf hinzu. (Copy/Paste von/etc/X11/xorg.conf.seat2 )&lt;br /&gt;
#:Folgende Sectionen musst du übernehmen: (Section &amp;quot;&amp;quot; lass ich unten mal weg, bin schreibfaul).&lt;br /&gt;
#:InputDevice  ( Mouse + Keyboard )&lt;br /&gt;
#:Monitor &lt;br /&gt;
#:Modes ( wenn nicht alles einheitlich sein sollte, da alle Bildschirme gleich sind. Siehe oben)&lt;br /&gt;
#:Screen&lt;br /&gt;
#:Device&lt;br /&gt;
#:ServerLayout&lt;br /&gt;
#Test der Server mit einer Konfig&lt;br /&gt;
#:Erster X-Server:&lt;br /&gt;
#:X :0&lt;br /&gt;
#:korrigiere die Konfiguration in xorg.conf ( Fehlermeldungen sollten im Log /var/log/Xorg.0.log sein ). Bei dem Copy/Paste ist bestimmt was nicht korrekt. Beende den X-Server dann mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;Backspace&amp;gt;&lt;br /&gt;
#:Zweiter X-Server, jetzt mit der Konfiguration /etc/X11/xorg.conf&lt;br /&gt;
#:X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
#:Wenn der zweite X-Server auch startet: Herzlichen Glückwunsch!&lt;br /&gt;
&lt;br /&gt;
Als letztes passe noch kdmrc wie oben beschreiben an und starte das System im Runlevel 5 (Befehl: init 5 ) um zu sehen, wie die X-Server mit den zwei logins laufen.&lt;br /&gt;
Bei Problemen poste bitte im Forum. Wenn dir dort niemand bei dem Thema helfen kann und ich den Thread übersehen habe schreib eine kurze Nachricht mit dem Link zum Thread an mich (haveaniceday) . (Direkt Nachrichten, _ohne_ Thread ignoriere ich garantiert.)&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23527</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23527"/>
		<updated>2008-01-06T21:42:27Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Hinweise zur Erstellung der xorg.conf */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.Wenn dass jemand mit Gnome Konfigurationsahnung ergänzen könnte wäre das schön.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
Die Konfiguration [[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]] ist das Ergebnis.&lt;br /&gt;
Seat1 arbeitet mit einem 1920x1200 und einem 1280x1024 Bildschirm.&lt;br /&gt;
Beide haben eine getrennte KDE-Session, die aber mit einem Login&lt;br /&gt;
gestartet wird.&lt;br /&gt;
&lt;br /&gt;
Seat2 sind 2 Bildschirme mit je 1280x1024. Diese Bildschirme werden als eine Session genutzt.&lt;br /&gt;
&lt;br /&gt;
*Grundlage für alle Versuche unten&lt;br /&gt;
**Der Rechner sollte im Runlevel 3 gestartet werden. ( Keine graphische Oberfläche )&lt;br /&gt;
**Login als root =&amp;gt; Sehr vorsichtig sein, was man tut. Man könnte theoretisch alles löschen/kaputt machen.&lt;br /&gt;
**Versuche mit einer bestimmten Konfiguration gehen z.B. für einen X-Server :1 (Karte 1) mit der Layoutsektion &amp;quot;Layout[seat2]&amp;quot; so:&lt;br /&gt;
**:X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
**Ohne -layout ... wird die Sektion Layout[all] aus /etc/X11/xorg.conf genutzt.&lt;br /&gt;
**Ein gestarteter X-Server lässt sich mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;Backspace&amp;gt; beenden.&lt;br /&gt;
**Wenn ein X-Server gestartet ist kommt man mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;F1-Funktionstaste&amp;gt; z.B. in die erste Terminalsession (F1).&lt;br /&gt;
**Zum X-Server kommt man aus einer Terminalsession mit &amp;lt;alt&amp;gt;+&amp;lt;F7&amp;gt; bzw. &amp;lt;alt&amp;gt;+&amp;lt;F8&amp;gt; zu einem X-Server mit dem Parameter vt8 gestarteten X-Server zurück.&lt;br /&gt;
**Protokolle des X-Servers werden in /var/log/Xorg.&amp;lt;Karte&amp;gt;.log also im Beispiel oben /var/log/Xorg.1.log abgelegt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Nutze z.B. sax2 um die Graphikkarten zu erkennen.&lt;br /&gt;
#:sax2 -p&lt;br /&gt;
#:Chip: 0  is -&amp;gt; NVidia GeForce FX 5200 (0x0322)  00:08:0 0x10de 0x0322 PCI nv&lt;br /&gt;
#:Chip: 1  is -&amp;gt; NVidia GeForce4 Ti 4200 with AGP8X 01:00:0 0x10de 0x0281 AGP nv&lt;br /&gt;
&lt;br /&gt;
#Seat1: (primäre, z.B. AGP Karte )&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c1&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat1&lt;br /&gt;
#Seat2:&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c0&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat2&lt;br /&gt;
#Grundkonfiguration&lt;br /&gt;
#:Nimm die Datei /etc/X11/xorg.conf.seat1 als Kopie für /etc/X11/xorg.conf&lt;br /&gt;
#Ändere die Identifier/Namen, etc. von folgenden Sektionen in xorg.conf.seat2 damit sich diese von den wahrscheinlich gleichen Namen in xorg.conf.seat1 unterscheiden.&lt;br /&gt;
#:Section &amp;quot;Modes&amp;quot; Identifier in eindeutige Namen, z.B. Auflösung &amp;quot;Mode1280&amp;quot;. Achtung die Namen müssen in der Gesamtdatei eindeutig sein. Man kann aber bei gleichen Bildschirmen auch eine einzige Section &amp;quot;Modes&amp;quot; mit nur einem Namen verwenden.&lt;br /&gt;
#:Section &amp;quot;Monitor&amp;quot; Identifier in  z.B. &amp;quot;SEAT2-rightscreen&amp;quot;, &amp;quot;SEAT2-leftscreen&amp;quot;. Die UseModes &amp;quot;...&amp;quot; nicht vergessen auf die Werte von oben anzupassen.&lt;br /&gt;
#:Section &amp;quot;Device&amp;quot; eindeutig für Identifier. Achtung: die Screen &amp;quot;0&amp;quot; oder Screen &amp;quot;1&amp;quot; Werte beziehen sich auf die Karte. Also nicht Screen &amp;quot;2&amp;quot; und Screen &amp;quot;3&amp;quot; verwenden. Bitte auch die BusID &amp;quot;PCI:...&amp;quot; zu der Section &amp;quot;Device&amp;quot;. &lt;br /&gt;
#:Section &amp;quot;Screen&amp;quot; eindeutig für Device, Identifier, Monitor (die o.a. Namen von den Änderungen in der Section &amp;quot;Monitor&amp;quot;, &amp;quot;Device&amp;quot; müssen dazu passen).&lt;br /&gt;
#:Section &amp;quot;ServerLayout&amp;quot; eindeutig für Identifier z.B. &amp;quot;Layout[seat2]&amp;quot;. Ergänze hier auch die Option &amp;quot;IsolateDevice&amp;quot; mit der passenden PCI-Adresse und evtl. die Screen 0/1 Namen.&lt;br /&gt;
#Jetzt sind wir soweit diese Änderungen zu Testen. Mouse und Keyboard kommen später dran.&lt;br /&gt;
#:Starte den X-Server für die &amp;quot;Seat2&amp;quot; Konfiguration mit X :1 -sharevts -br vt8 -layout Layout[seat2] -config /etc/X11/xorg.conf.seat2&lt;br /&gt;
#:Schau was an Fehlermeldungen kommt. Das Konfigurieren klappt bestimmt nicht auch anhieb. :) /var/log/Xorg.0.log ist dabei hilfreich. Falls es doch auf Anhieb mit der zweiten Karte klappt: herzlichen Glückwunsch, X-Server wie oben beschrieben mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;backspace&amp;gt; beenden.&lt;br /&gt;
#Jetzt sind Tastatur und Maus dran. Steck die zweite Tastatur (USB) und die zweite Maus an, wenn noch nicht geschehen. Die Befehle um die Devices zu finden sind:&lt;br /&gt;
#:ls -l /dev/input/by-id&lt;br /&gt;
#:ls -l /dev/input/by-path&lt;br /&gt;
#:Bei der Section &amp;quot;InputDevice&amp;quot; für die Mouse kann man jetzt die Option &amp;quot;Device&amp;quot; /dev/input/by-path/...&amp;quot; eingeben. Leider geht dieses mit by-patch nicht für das Keyboard. Die Section &amp;quot;InputDevice&amp;quot; für das Keyboard muss mit Option &amp;quot;Device&amp;quot; &amp;quot;/dev/input/event...&amp;quot; auf ein &amp;quot;event&amp;quot; zeigen. Folge also /dev/input/by-id/..keyboard.. und nimm das passende event?, also z.B. im Beispiel event3.&lt;br /&gt;
#: Passe die &amp;quot;Identifier&amp;quot; Namen für Keyboard und Mouse in xorg.conf.seat2 an. (Section &amp;quot;InputDevice&amp;quot; und in Section &amp;quot;ServerLayout&amp;quot; die Benutzung )&lt;br /&gt;
#Teste jetzt wie oben ( Starte X-Server :1...) ob z.B. _nur_ die richtige Maus eindeutig den Zeiger im X-Server bewegt. (Achtung, falls später die Mouse oder das Keyboard nicht gehen: Nach einem Boot mit den eingesteckten Komponenten (USB-Keyboard,USB-Mouse) könnten diese geräte einen anderen Namen als beim Anstecken im Laufenden Betrieb erhalten (Speziell das Keyboard, welches über /dev/input/event... läuft.&lt;br /&gt;
#Änderungen in /etc/X11/xorg.conf  ( für &amp;quot;seat1&amp;quot; )&lt;br /&gt;
#:Passe InputDevice für Keyboard und Mouse mit der Option &amp;quot;Device&amp;quot; &amp;quot;/dev/input...&amp;quot; an, wie oben für xorg.conf.seat2 . Vergiss nicht die Eindeutigen Namen auch in Layout[all] einzutragen.&lt;br /&gt;
#Wenn das alles geklappt hat sind wir fast fertig! Füge die Konfiguration von xorg.conf.seat2 zu xorg.conf hinzu. (Copy/Paste von/etc/X11/xorg.conf.seat2 )&lt;br /&gt;
#:Folgende Sectionen musst du übernehmen: (Section &amp;quot;&amp;quot; lass ich unten mal weg, bin schreibfaul).&lt;br /&gt;
#:InputDevice  ( Mouse + Keyboard )&lt;br /&gt;
#:Monitor &lt;br /&gt;
#:Modes ( wenn nicht alles einheitlich sein sollte, da alle Bildschirme gleich sind. Siehe oben)&lt;br /&gt;
#:Screen&lt;br /&gt;
#:Device&lt;br /&gt;
#:ServerLayout&lt;br /&gt;
#Test der Server mit einer Konfig&lt;br /&gt;
#:Erster X-Server:&lt;br /&gt;
#:X :0&lt;br /&gt;
#:korrigiere die Konfiguration in xorg.conf ( Fehlermeldungen sollten im Log /var/log/Xorg.0.log sein ). Bei dem Copy/Paste ist bestimmt was nicht korrekt...&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23526</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23526"/>
		<updated>2008-01-06T21:28:57Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Hinweise zur Erstellung der xorg.conf */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.Wenn dass jemand mit Gnome Konfigurationsahnung ergänzen könnte wäre das schön.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
Die Konfiguration [[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]] ist das Ergebnis.&lt;br /&gt;
Seat1 arbeitet mit einem 1920x1200 und einem 1280x1024 Bildschirm.&lt;br /&gt;
Beide haben eine getrennte KDE-Session, die aber mit einem Login&lt;br /&gt;
gestartet wird.&lt;br /&gt;
&lt;br /&gt;
Seat2 sind 2 Bildschirme mit je 1280x1024. Diese Bildschirme werden als eine Session genutzt.&lt;br /&gt;
&lt;br /&gt;
*Grundlage für alle Versuche unten&lt;br /&gt;
**Der Rechner sollte im Runlevel 3 gestartet werden. ( Keine graphische Oberfläche )&lt;br /&gt;
**Login als root =&amp;gt; Sehr vorsichtig sein, was man tut. Man könnte theoretisch alles löschen/kaputt machen.&lt;br /&gt;
**Versuche mit einer bestimmten Konfiguration gehen z.B. für einen X-Server :1 (Karte 1) mit der Layoutsektion &amp;quot;Layout[seat2]&amp;quot; so:&lt;br /&gt;
**:X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
**Ohne -layout ... wird die Sektion Layout[all] aus /etc/X11/xorg.conf genutzt.&lt;br /&gt;
**Ein gestarteter X-Server lässt sich mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;Backspace&amp;gt; beenden.&lt;br /&gt;
**Wenn ein X-Server gestartet ist kommt man mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;F1-Funktionstaste&amp;gt; z.B. in die erste Terminalsession (F1).&lt;br /&gt;
**Zum X-Server kommt man aus einer Terminalsession mit &amp;lt;alt&amp;gt;+&amp;lt;F7&amp;gt; bzw. &amp;lt;alt&amp;gt;+&amp;lt;F8&amp;gt; zu einem X-Server mit dem Parameter vt8 gestarteten X-Server zurück.&lt;br /&gt;
**Protokolle des X-Servers werden in /var/log/Xorg.&amp;lt;Karte&amp;gt;.log also im Beispiel oben /var/log/Xorg.1.log abgelegt.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Nutze z.B. sax2 um die Graphikkarten zu erkennen.&lt;br /&gt;
#:sax2 -p&lt;br /&gt;
#:Chip: 0  is -&amp;gt; NVidia GeForce FX 5200 (0x0322)  00:08:0 0x10de 0x0322 PCI nv&lt;br /&gt;
#:Chip: 1  is -&amp;gt; NVidia GeForce4 Ti 4200 with AGP8X 01:00:0 0x10de 0x0281 AGP nv&lt;br /&gt;
&lt;br /&gt;
#Seat1: (primäre, z.B. AGP Karte )&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c1&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat1&lt;br /&gt;
#Seat2:&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c0&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat2&lt;br /&gt;
#Grundkonfiguration&lt;br /&gt;
#:Nimm die Datei /etc/X11/xorg.conf.seat1 als Kopie für /etc/X11/xorg.conf&lt;br /&gt;
#Ändere die Identifier/Namen, etc. von folgenden Sektionen in xorg.conf.seat2 damit sich diese von den wahrscheinlich gleichen Namen in xorg.conf.seat1 unterscheiden.&lt;br /&gt;
#:Section &amp;quot;Modes&amp;quot; Identifier in eindeutige Namen, z.B. Auflösung &amp;quot;Mode1280&amp;quot;. Achtung die Namen müssen in der Gesamtdatei eindeutig sein. Man kann aber bei gleichen Bildschirmen auch eine einzige Section &amp;quot;Modes&amp;quot; mit nur einem Namen verwenden.&lt;br /&gt;
#:Section &amp;quot;Monitor&amp;quot; Identifier in  z.B. &amp;quot;SEAT2-rightscreen&amp;quot;, &amp;quot;SEAT2-leftscreen&amp;quot;. Die UseModes &amp;quot;...&amp;quot; nicht vergessen auf die Werte von oben anzupassen.&lt;br /&gt;
#:Section &amp;quot;Device&amp;quot; eindeutig für Identifier. Achtung: die Screen &amp;quot;0&amp;quot; oder Screen &amp;quot;1&amp;quot; Werte beziehen sich auf die Karte. Also nicht Screen &amp;quot;2&amp;quot; und Screen &amp;quot;3&amp;quot; verwenden. Bitte auch die BusID &amp;quot;PCI:...&amp;quot; zu der Section &amp;quot;Device&amp;quot;. &lt;br /&gt;
#:Section &amp;quot;Screen&amp;quot; eindeutig für Device, Identifier, Monitor (die o.a. Namen von den Änderungen in der Section &amp;quot;Monitor&amp;quot;, &amp;quot;Device&amp;quot; müssen dazu passen).&lt;br /&gt;
#:Section &amp;quot;ServerLayout&amp;quot; eindeutig für Identifier z.B. &amp;quot;Layout[seat2]&amp;quot;. Ergänze hier auch die Option &amp;quot;IsolateDevice&amp;quot; mit der passenden PCI-Adresse und evtl. die Screen 0/1 Namen.&lt;br /&gt;
#Jetzt sind wir soweit diese Änderungen zu Testen. Mouse und Keyboard kommen später dran.&lt;br /&gt;
#:Starte den X-Server für die &amp;quot;Seat2&amp;quot; Konfiguration mit X :1 -sharevts -br vt8 -layout Layout[seat2] -config /etc/X11/xorg.conf.seat2&lt;br /&gt;
#:Schau was an Fehlermeldungen kommt. Das Konfigurieren klappt bestimmt nicht auch anhieb. :) /var/log/Xorg.0.log ist dabei hilfreich. Falls es doch auf Anhieb mit der zweiten Karte klappt: herzlichen Glückwunsch, X-Server wie oben beschrieben mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;backspace&amp;gt; beenden.&lt;br /&gt;
#Jetzt sind Tastatur und Maus dran. Steck die zweite Tastatur (USB) und die zweite Maus an, wenn noch nicht geschehen. Die Befehle um die Devices zu finden sind:&lt;br /&gt;
#:ls -l /dev/input/by-id&lt;br /&gt;
#:ls -l /dev/input/by-path&lt;br /&gt;
#:Bei der Section &amp;quot;InputDevice&amp;quot; für die Mouse kann man jetzt die Option &amp;quot;Device&amp;quot; /dev/input/by-path/...&amp;quot; eingeben. Leider geht dieses mit by-patch nicht für das Keyboard. Die Section &amp;quot;InputDevice&amp;quot; für das Keyboard muss mit Option &amp;quot;Device&amp;quot; &amp;quot;/dev/input/event...&amp;quot; auf ein &amp;quot;event&amp;quot; zeigen. Folge also /dev/input/by-id/..keyboard.. und nimm das passende event?, also z.B. im Beispiel event3.&lt;br /&gt;
#: Passe die &amp;quot;Identifier&amp;quot; Namen für Keyboard und Mouse in xorg.conf.seat2 an. (Section &amp;quot;InputDevice&amp;quot; und in Section &amp;quot;ServerLayout&amp;quot; die Benutzung )&lt;br /&gt;
#Teste jetzt wie oben ( Starte X-Server :1...) ob z.B. _nur_ die richtige Maus eindeutig den Zeiger im X-Server bewegt.&lt;br /&gt;
#Füge die Konfiguration von seat2 hinzu. (Copy/Paste von/etc/X11/xorg.conf.seat2 )&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23525</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23525"/>
		<updated>2008-01-06T20:48:09Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Hinweise zur Erstellung der xorg.conf */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.Wenn dass jemand mit Gnome Konfigurationsahnung ergänzen könnte wäre das schön.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
Die Konfiguration [[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]] ist das Ergebnis.&lt;br /&gt;
Seat1 arbeitet mit einem 1920x1200 und einem 1280x1024 Bildschirm.&lt;br /&gt;
Beide haben eine getrennte KDE-Session, die aber mit einem Login&lt;br /&gt;
gestartet wird.&lt;br /&gt;
&lt;br /&gt;
Seat2 sind 2 Bildschirme mit je 1280x1024. Diese Bildschirme werden als eine Session genutzt.&lt;br /&gt;
&lt;br /&gt;
*Grundlage für alle Versuche unten&lt;br /&gt;
**Der Rechner sollte im Runlevel 3 gestartet werden. ( Keine graphische Oberfläche )&lt;br /&gt;
**Login als root =&amp;gt; Sehr vorsichtig sein, was man tut. Man könnte theoretisch alles löschen/kaputt machen.&lt;br /&gt;
**Versuche mit einer bestimmten Konfiguration gehen z.B. für einen X-Server :1 (Karte 1) mit der Layoutsektion &amp;quot;Layout[seat2]&amp;quot; so:&lt;br /&gt;
**:X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
**Ohne -layout ... wird die Sektion Layout[all] aus /etc/X11/xorg.conf genutzt.&lt;br /&gt;
**Ein gestarteter X-Server lässt sich mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;Backspace&amp;gt; beenden.&lt;br /&gt;
**Wenn ein X-Server gestartet ist kommt man mit &amp;lt;strg&amp;gt;+&amp;lt;alt&amp;gt;+&amp;lt;F1-Funktionstaste&amp;gt; z.B. in die erste Terminalsession (F1).&lt;br /&gt;
**Zum X-Server kommt man aus einer Terminalsession mit &amp;lt;alt&amp;gt;+&amp;lt;F7&amp;gt; bzw. &amp;lt;alt&amp;gt;+&amp;lt;F8&amp;gt; zu einem X-Server mit dem Parameter vt8 gestarteten X-Server zurück.&lt;br /&gt;
**Protokolle des X-Servers werden in /var/log/Xorg.&amp;lt;Karte&amp;gt;.log also im Beispiel oben /var/log/Xorg.1.log abgelegt.&lt;br /&gt;
&lt;br /&gt;
#Nutze z.B. sax2 um die Graphikkarten zu erkennen.&lt;br /&gt;
#:sax2 -p&lt;br /&gt;
#:Chip: 0  is -&amp;gt; NVidia GeForce FX 5200 (0x0322)  00:08:0 0x10de 0x0322 PCI nv&lt;br /&gt;
#:Chip: 1  is -&amp;gt; NVidia GeForce4 Ti 4200 with AGP8X 01:00:0 0x10de 0x0281 AGP nv&lt;br /&gt;
&lt;br /&gt;
#Seat1: (primäre, z.B. AGP Karte )&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c1&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat1&lt;br /&gt;
#Seat2:&lt;br /&gt;
#:Erstelle eine reguläre Konfiguration z.B. hier mit: sax2 -c0&lt;br /&gt;
#:Sichere die erstellte Datei /etc/X11/xorg.conf als /etc/X11/xorg.conf.seat2&lt;br /&gt;
#Grundkonfiguration&lt;br /&gt;
#:Nimm die Datei /etc/X11/xorg.conf.seat1 als Kopie für /etc/X11/xorg.conf&lt;br /&gt;
#Füge die Konfiguration von seat2 hinzu. (Copy/Paste von/etc/X11/xorg.conf.seat2 )&lt;br /&gt;
*:&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23524</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23524"/>
		<updated>2008-01-06T20:10:31Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Windowmanager konfiguration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.Wenn dass jemand mit Gnome Konfigurationsahnung ergänzen könnte wäre das schön.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23523</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23523"/>
		<updated>2008-01-06T20:08:19Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Konfiguration Multiseat */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23522</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23522"/>
		<updated>2008-01-06T20:06:34Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Windowmanager konfiguration */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;br /&gt;
&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:1. entferne ,:1 von ReserveServer&lt;br /&gt;
#:2. Füge ,:1 zu StaticServers hinzu&lt;br /&gt;
#:3. Füge die passenden Optionen für den zweiten Xserver hinzu.&lt;br /&gt;
#:Also als Einstellung:&lt;br /&gt;
#:StaticServers=:0,:1&lt;br /&gt;
#:ReserveServers=:2,:3&lt;br /&gt;
#:[X-:1-Core]&lt;br /&gt;
#:ServerArgsLocal=-layout Layout[seat2] -sharevts&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23449</id>
		<title>Multiseat unter SuSE 10 3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Multiseat_unter_SuSE_10_3_Hinweise&amp;diff=23449"/>
		<updated>2007-12-30T21:38:24Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: Die Seite wurde neu angelegt: == Konfiguration Multiseat== To be continued... Haveaniceday 30.12.2007  Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;br /&gt;
&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23448</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23448"/>
		<updated>2007-12-30T21:38:06Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
##:[[Multiseat unter SuSE 10 3 Hinweise|X.org.conf Multiseat unter SuSE 10.3:Hinweise]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X.org.conf_Multiseat_unter_SuSE_10.3_Hinweise&amp;diff=23447</id>
		<title>X.org.conf Multiseat unter SuSE 10.3 Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X.org.conf_Multiseat_unter_SuSE_10.3_Hinweise&amp;diff=23447"/>
		<updated>2007-12-30T21:34:01Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: Die Seite wurde neu angelegt: == Konfiguration Multiseat== To be continued... Haveaniceday 30.12.2007  Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;br /&gt;
&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23446</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23446"/>
		<updated>2007-12-30T21:33:29Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
###[[X.org.conf Multiseat unter SuSE 10.3 Hinweise|X.org.conf Multiseat unter SuSE 10.3: Hinweise]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X.org.conf_Multiseat_unter_SuSE_10.3:_Hinweise&amp;diff=23445</id>
		<title>X.org.conf Multiseat unter SuSE 10.3: Hinweise</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X.org.conf_Multiseat_unter_SuSE_10.3:_Hinweise&amp;diff=23445"/>
		<updated>2007-12-30T21:32:10Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: Die Seite wurde neu angelegt: == Konfiguration Multiseat== To be continued... Haveaniceday 30.12.2007  Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betr...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Konfiguration Multiseat==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;br /&gt;
&lt;br /&gt;
Neben der Konfiguration für den Xserver muss auch noch KDE/Gnome/XDM für einen Multiseat Betrieb vorbereitet werden.&lt;br /&gt;
Unten findet Ihr auch, wie ich meine Konfiguration manuell erstellt habe.&lt;br /&gt;
==Windowmanager konfiguration==&lt;br /&gt;
#KDE:&lt;br /&gt;
#:Entgegen der Dokumentation ging unter KDE3 (SuSE 10.3) die Modfikation von Xservers (siehe XDM) nicht.&lt;br /&gt;
#:Statt dessen musste ich /opt/kde3/share/config/kdm/kdmrc anpassen.&lt;br /&gt;
#:&lt;br /&gt;
#Gnome:&amp;lt;br /&amp;gt;Fehlt noch.&lt;br /&gt;
# XDM:&amp;lt;br /&amp;gt;Ungetested&amp;lt;br /&amp;gt;Die Konfiguration des zweiten Platzes sollte über /etc/X11/xdm/Xservers gehen.&amp;lt;br /&amp;gt;Ergänze dort die Zeile:&amp;lt;br /&amp;gt;:1 local /usr/bin/X :1 -sharevts -br vt8 -layout Layout[seat2]&lt;br /&gt;
==Hinweise zur Erstellung der xorg.conf==&lt;br /&gt;
To be continued... Haveaniceday 30.12.2007&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23444</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23444"/>
		<updated>2007-12-30T21:31:36Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
###[[X.org.conf Multiseat unter SuSE 10.3: Hinweise|X.org.conf Multiseat unter SuSE 10.3: Hinweise]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23443</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23443"/>
		<updated>2007-12-30T20:52:00Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
###[[Hinweise zu dieser Konfiguration|X.org.conf Multiseat unter SuSE 10.3: Hinweise]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23442</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23442"/>
		<updated>2007-12-30T20:51:40Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
###[[Hinweise zu dieser Konfiguration|X.org.conf Multiseat unter SuSE 10.3 Hinweise]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=NVidia_AGP_%2B_NVidia_PCI_Grafikkarte&amp;diff=23441</id>
		<title>NVidia AGP + NVidia PCI Grafikkarte</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=NVidia_AGP_%2B_NVidia_PCI_Grafikkarte&amp;diff=23441"/>
		<updated>2007-12-30T20:50:44Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: Die Seite wurde neu angelegt: &amp;lt;pre&amp;gt; Section &amp;quot;Files&amp;quot;   FontPath     &amp;quot;/usr/share/fonts/misc:unscaled&amp;quot;   FontPath     &amp;quot;/usr/share/fonts/local&amp;quot;   FontPath     &amp;quot;/usr/share/fonts/75dpi:unscaled&amp;quot;   FontPat...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
Section &amp;quot;Files&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/misc:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/local&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/75dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/100dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/Type1&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/URW&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/Speedo&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/PEX&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/cyrillic&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/latin2/misc:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/latin2/75dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/latin2/100dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/latin2/Type1&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/latin7/75dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/baekmuk:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/japanese:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/kwintv&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/truetype&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/uni:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/CID&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/ucs/misc:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/ucs/75dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/ucs/100dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/hellas/misc:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/hellas/75dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/hellas/100dpi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/hellas/Type1&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/misc/sgi:unscaled&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/usr/share/fonts/xtest&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;/opt/kde3/share/fonts&amp;quot;&lt;br /&gt;
  FontPath     &amp;quot;unix/:7100&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;ServerFlags&amp;quot;&lt;br /&gt;
  Option       &amp;quot;AllowMouseOpenFail&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
  Option       &amp;quot;PciOsConfig&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Module&amp;quot;&lt;br /&gt;
  Load         &amp;quot;v4l&amp;quot;&lt;br /&gt;
  Load         &amp;quot;dbe&amp;quot;&lt;br /&gt;
  Load         &amp;quot;glx&amp;quot;&lt;br /&gt;
  Load         &amp;quot;type1&amp;quot;&lt;br /&gt;
  Load         &amp;quot;freetype&amp;quot;&lt;br /&gt;
  Load         &amp;quot;extmod&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
# See this path to find your mouse/keyboard devices:&lt;br /&gt;
#/dev/input/by-id:&lt;br /&gt;
#total 0&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 usb-0461_USB_Optical_Mouse-event-mouse -&amp;gt; ../event5&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 usb-0461_USB_Optical_Mouse-mouse -&amp;gt; ../mouse1&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 usb-1267_0103-event-kbd -&amp;gt; ../event3&lt;br /&gt;
#&lt;br /&gt;
#/dev/input/by-path:&lt;br /&gt;
#total 0&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 pci-0000:00:03.0-usb-0:1:1.0-event-kbd -&amp;gt; ../event3&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 pci-0000:00:03.0-usb-0:1:1.1-event- -&amp;gt; ../event4&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 pci-0000:00:03.2-usb-0:2:1.0-event-mouse -&amp;gt; ../event5&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 pci-0000:00:03.2-usb-0:2:1.0-mouse -&amp;gt; ../mouse1&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 platform-i8042-serio-0-event-kbd -&amp;gt; ../event0&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 platform-i8042-serio-1-event-mouse -&amp;gt; ../event2&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 platform-i8042-serio-1-mouse -&amp;gt; ../mouse0&lt;br /&gt;
#lrwxrwxrwx 1 root root 9 Nov 11  2007 platform-pcspkr-event-spkr -&amp;gt; ../event1&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;evdev&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Device&amp;quot; &amp;quot;/dev/input/event0&amp;quot;&lt;br /&gt;
  # Hmm, I was not able to use  /dev/input/by-path/ and &amp;quot;Phys&amp;quot;: Xserver did not accept :-(&lt;br /&gt;
  #Option       &amp;quot;Device&amp;quot; &amp;quot;/dev/input/by-path/platform-i8042-serio-0-event-kbd&amp;quot;&lt;br /&gt;
  ##Option       &amp;quot;Phys&amp;quot; &amp;quot;isa0060/serio0/input0&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Keyboard-ps2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbLayout&amp;quot; &amp;quot;de&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbModel&amp;quot; &amp;quot;evdev&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbRules&amp;quot; &amp;quot;xfree86&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbVariant&amp;quot; &amp;quot;nodeadkeys&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;mouse&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Mouse-ps2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Buttons&amp;quot; &amp;quot;5&amp;quot;&lt;br /&gt;
  #Option       &amp;quot;Dev Phys&amp;quot; &amp;quot;isa0060/serio1/input0&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Device&amp;quot; &amp;quot;/dev/input/by-path/platform-i8042-serio-1-mouse&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Name&amp;quot; &amp;quot;ImPS/2 Generic Wheel Mouse&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Protocol&amp;quot; &amp;quot;explorerps/2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Vendor&amp;quot; &amp;quot;Sysp&amp;quot;&lt;br /&gt;
  Option       &amp;quot;ZAxisMapping&amp;quot; &amp;quot;4 5&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;evdev&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Device&amp;quot; &amp;quot;/dev/input/event3&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Keyboard-seat2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbLayout&amp;quot; &amp;quot;de&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbModel&amp;quot; &amp;quot;evdev&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbRules&amp;quot; &amp;quot;xfree86&amp;quot;&lt;br /&gt;
  Option       &amp;quot;XkbVariant&amp;quot; &amp;quot;nodeadkeys&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;InputDevice&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;mouse&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Mouse-seat2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Buttons&amp;quot; &amp;quot;5&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Device&amp;quot; &amp;quot;/dev/input/by-id/usb-0461_USB_Optical_Mouse-mouse&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Name&amp;quot; &amp;quot;ImPS/2 Generic Wheel Mouse&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Protocol&amp;quot; &amp;quot;explorerps/2&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Vendor&amp;quot; &amp;quot;Sysp&amp;quot;&lt;br /&gt;
  Option       &amp;quot;ZAxisMapping&amp;quot; &amp;quot;4 5&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
  Option       &amp;quot;CalcAlgorithm&amp;quot; &amp;quot;XServerPool&amp;quot;&lt;br /&gt;
  DisplaySize  380 290&lt;br /&gt;
  HorizSync    30-81&lt;br /&gt;
  Identifier   &amp;quot;SEAT1-leftscreen&amp;quot;&lt;br /&gt;
  ModelName    &amp;quot;2405 FPW&amp;quot;&lt;br /&gt;
  Option       &amp;quot;DPMS&amp;quot;&lt;br /&gt;
  VertRefresh  56-76&lt;br /&gt;
  UseModes     &amp;quot;Mode1920&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
  Option       &amp;quot;CalcAlgorithm&amp;quot; &amp;quot;CheckDesktopGeometry&amp;quot;&lt;br /&gt;
  DisplaySize  360 270&lt;br /&gt;
  HorizSync    31-64&lt;br /&gt;
  Identifier   &amp;quot;SEAT1-rightscreen&amp;quot;&lt;br /&gt;
#  Option       &amp;quot;DPMS&amp;quot;&lt;br /&gt;
  Option       &amp;quot;DPMS&amp;quot;&lt;br /&gt;
  VendorName   &amp;quot;FlexScan L671&amp;quot;&lt;br /&gt;
  VertRefresh  50-58&lt;br /&gt;
  UseModes     &amp;quot;Mode1280&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Monitor&amp;quot;&lt;br /&gt;
  Option       &amp;quot;CalcAlgorithm&amp;quot; &amp;quot;CheckDesktopGeometry&amp;quot;&lt;br /&gt;
  DisplaySize  360 270&lt;br /&gt;
  HorizSync    31-64&lt;br /&gt;
  Identifier   &amp;quot;Philips&amp;quot;&lt;br /&gt;
  ModelName    &amp;quot;Philips&amp;quot;&lt;br /&gt;
#  Option       &amp;quot;DPMS&amp;quot;&lt;br /&gt;
  VendorName   &amp;quot;BRILLIANCE 180P&amp;quot;&lt;br /&gt;
  VertRefresh  50-58&lt;br /&gt;
  UseModes     &amp;quot;Mode1280&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Modes&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Mode1920&amp;quot;&lt;br /&gt;
  Modeline      &amp;quot;1920x1200&amp;quot; 154.00 1920 1976 2008 2080 1200 1203 1209 1235 +HSync +VSync&lt;br /&gt;
  Modeline      &amp;quot;1280x1024&amp;quot; 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync&lt;br /&gt;
  Modeline      &amp;quot;1280x1024&amp;quot; 105.15 1280 1360 1496 1712 1024 1025 1028 1059&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Modes&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Mode1280&amp;quot;&lt;br /&gt;
  Modeline      &amp;quot;1280x1024&amp;quot; 105.15 1280 1360 1496 1712 1024 1025 1028 1059&lt;br /&gt;
  Modeline      &amp;quot;768x576&amp;quot; 33.74 768 792 872 976 576 577 580 596&lt;br /&gt;
  Modeline      &amp;quot;1280x1024&amp;quot; 108.0 1280 1328 1440 1688 1024 1025 1028 1066 +hsync +vsync&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  DefaultDepth 24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      15&lt;br /&gt;
    Modes      &amp;quot;1920x1200&amp;quot; &amp;quot;1900x1200&amp;quot; &amp;quot;1600x1200&amp;quot; &amp;quot;1680x1050&amp;quot; &amp;quot;1600x1024&amp;quot; &amp;quot;1600x1000&amp;quot; &amp;quot;1400x1050&amp;quot; &amp;quot;1280x1024&amp;quot; &amp;quot;1440x900&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1366x768&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      16&lt;br /&gt;
    Modes      &amp;quot;1920x1200&amp;quot; &amp;quot;1900x1200&amp;quot; &amp;quot;1600x1200&amp;quot; &amp;quot;1680x1050&amp;quot; &amp;quot;1600x1024&amp;quot; &amp;quot;1600x1000&amp;quot; &amp;quot;1400x1050&amp;quot; &amp;quot;1280x1024&amp;quot; &amp;quot;1440x900&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1366x768&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      24&lt;br /&gt;
    Modes      &amp;quot;1920x1200&amp;quot; &amp;quot;1900x1200&amp;quot; &amp;quot;1600x1200&amp;quot; &amp;quot;1680x1050&amp;quot; &amp;quot;1600x1024&amp;quot; &amp;quot;1600x1000&amp;quot; &amp;quot;1400x1050&amp;quot; &amp;quot;1280x1024&amp;quot; &amp;quot;1440x900&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1366x768&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      8&lt;br /&gt;
    Modes      &amp;quot;1920x1200&amp;quot; &amp;quot;1900x1200&amp;quot; &amp;quot;1600x1200&amp;quot; &amp;quot;1680x1050&amp;quot; &amp;quot;1600x1024&amp;quot; &amp;quot;1600x1000&amp;quot; &amp;quot;1400x1050&amp;quot; &amp;quot;1280x1024&amp;quot; &amp;quot;1440x900&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1366x768&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  Device       &amp;quot;Device[0]&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;ScreenSEAT1-leftscreen&amp;quot;&lt;br /&gt;
  Monitor      &amp;quot;SEAT1-leftscreen&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  DefaultDepth 24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      15&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      16&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      24&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      8&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;1280x960&amp;quot; &amp;quot;1280x800&amp;quot; &amp;quot;1152x864&amp;quot; &amp;quot;1280x768&amp;quot; &amp;quot;1024x768&amp;quot; &amp;quot;1280x600&amp;quot; &amp;quot;1024x600&amp;quot; &amp;quot;800x600&amp;quot; &amp;quot;768x576&amp;quot; &amp;quot;640x480&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  Device       &amp;quot;Device[2]&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Screenseat2&amp;quot;&lt;br /&gt;
  Monitor      &amp;quot;Philips&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
  BoardName    &amp;quot;GeForce4 Ti 4200 with AGP8X&amp;quot;&lt;br /&gt;
  BusID        &amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;nvidia&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Device[0]&amp;quot;&lt;br /&gt;
  Screen       0&lt;br /&gt;
  VendorName   &amp;quot;NVidia&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
  BoardName    &amp;quot;GeForce4 Ti 4200 with AGP8X&amp;quot;&lt;br /&gt;
  BusID        &amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;nvidia&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Device[1]&amp;quot;&lt;br /&gt;
  Screen       1&lt;br /&gt;
  VendorName   &amp;quot;NVidia&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Device&amp;quot;&lt;br /&gt;
  BoardName    &amp;quot;B5200&amp;quot;&lt;br /&gt;
  BusID        &amp;quot;PCI:0:8:0&amp;quot;&lt;br /&gt;
  Driver       &amp;quot;nvidia&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Device[2]&amp;quot;&lt;br /&gt;
  Option &amp;quot;TwinView&amp;quot;&lt;br /&gt;
    # be sure to replace the HorizSync and VertRefresh with correct values&lt;br /&gt;
    # for your monitor!&lt;br /&gt;
    Option &amp;quot;SecondMonitorHorizSync&amp;quot;   &amp;quot;31-64&amp;quot;&lt;br /&gt;
    Option &amp;quot;SecondMonitorVertRefresh&amp;quot; &amp;quot;50-58&amp;quot;&lt;br /&gt;
    Option &amp;quot;TwinViewOrientation&amp;quot;      &amp;quot;RightOf&amp;quot;&lt;br /&gt;
    Option &amp;quot;MetaModes&amp;quot;                &amp;quot;1280x1024,1280x1024; 1024x768,1024x768&amp;quot;&lt;br /&gt;
    Option &amp;quot;ConnectedMonitor&amp;quot;         &amp;quot;crt,crt&amp;quot;&lt;br /&gt;
  VendorName   &amp;quot;NVidia&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  DefaultDepth 24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      15&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      16&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      24&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      32&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      8&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  Device       &amp;quot;Device[1]&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;ScreenSEAT1-rightscreen&amp;quot;&lt;br /&gt;
  Monitor      &amp;quot;SEAT1-rightscreen&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;Screen&amp;quot;&lt;br /&gt;
  DefaultDepth 24&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      15&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      16&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      24&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      32&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  SubSection &amp;quot;Display&amp;quot;&lt;br /&gt;
    Depth      8&lt;br /&gt;
    Modes      &amp;quot;1280x1024&amp;quot; &amp;quot;768x576&amp;quot;&lt;br /&gt;
  EndSubSection&lt;br /&gt;
  Device       &amp;quot;Device[2]&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;ScreenSEAT2-left&amp;quot;&lt;br /&gt;
  Monitor      &amp;quot;Philips&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;ServerLayout&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Layout[all]&amp;quot;&lt;br /&gt;
  InputDevice  &amp;quot;Keyboard-ps2&amp;quot; &amp;quot;CoreKeyboard&amp;quot;&lt;br /&gt;
  InputDevice  &amp;quot;Mouse-ps2&amp;quot; &amp;quot;CorePointer&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Clone&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
  Option       &amp;quot;Xinerama&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
  Screen       0 &amp;quot;ScreenSEAT1-leftscreen&amp;quot;&lt;br /&gt;
  Screen       1 &amp;quot;ScreenSEAT1-rightscreen&amp;quot; rightof &amp;quot;ScreenSEAT1-leftscreen&amp;quot;&lt;br /&gt;
  Option       &amp;quot;IsolateDevice&amp;quot; &amp;quot;PCI:1:0:0&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;ServerLayout&amp;quot;&lt;br /&gt;
  Identifier   &amp;quot;Layout[seat2]&amp;quot;&lt;br /&gt;
  InputDevice  &amp;quot;Keyboard-seat2&amp;quot; &amp;quot;CoreKeyboard&amp;quot;&lt;br /&gt;
  InputDevice  &amp;quot;Mouse-seat2&amp;quot; &amp;quot;CorePointer&amp;quot;&lt;br /&gt;
  #Option       &amp;quot;Clone&amp;quot; &amp;quot;off&amp;quot;&lt;br /&gt;
  #Option       &amp;quot;Xinerama&amp;quot; &amp;quot;on&amp;quot;&lt;br /&gt;
  Screen       &amp;quot;ScreenSEAT2-left&amp;quot;&lt;br /&gt;
  Option       &amp;quot;IsolateDevice&amp;quot; &amp;quot;PCI:0:8:0&amp;quot;&lt;br /&gt;
EndSection&lt;br /&gt;
&lt;br /&gt;
Section &amp;quot;DRI&amp;quot;&lt;br /&gt;
    Group      &amp;quot;video&amp;quot;&lt;br /&gt;
    Mode       0660&lt;br /&gt;
EndSection&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[X-Server Musterkonfigurationen|Zurück zu den X-Server Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23440</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23440"/>
		<updated>2007-12-30T20:37:16Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat unter SuSE 10.3]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23439</id>
		<title>X-Server Musterkonfigurationen</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=X-Server_Musterkonfigurationen&amp;diff=23439"/>
		<updated>2007-12-30T20:36:53Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* x.org 7.x */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Musterkonfigurationen]]&lt;br /&gt;
[[Category:Grafikkarten und Monitore]]&lt;br /&gt;
&lt;br /&gt;
= x.org Musterkonfigurationen =&lt;br /&gt;
== x.org 6.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10 0 32 Bit|x.org.conf für MSI Geforce FX 5200 mit Samsung SyncMaster 192V auf OpenSuSE 10.0 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
####[[x org conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10 1|x.org.conf für NVidia Geforce FX 5200 mit zwei getrennten X-Servern auf OpenSuSE 10.1 32 Bit]]&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
####[[X org conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10 1 64 Bit|X.org.conf für 2 MSI Geforce 6600 GT im SLI-Mode mit Eizo T67S auf openSUSE 10.1 64 Bit]]&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10 1 32 Bit|x.org.conf für ATI 9600 Pro mit Samsung SyncMaster 700p Plus auf openSUSE 10.1 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
== x.org 7.x ==&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#### [[X org conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10 2/64|x.org.conf für 2 MSI Geforce 6600 GT im Dualhead/Twinview und SLI-Mode mit Eizo T67S und Samsung SyncMaster 192v auf openSUSE 10.2 64 Bit]]&lt;br /&gt;
&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
####[[x org conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit|x.org.conf für ATI Radeon 9800 pro mit Samsung SyncMaster 959NF auf Fedora Core 6 32 Bit]]&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
##[[Xorg conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10 2|X.org.conf Toshiba Tecra 8200 mit Trident CyberBlade/XP Onboardgrafikchip unter openSUSE 10.2]]&lt;br /&gt;
# Multiseat Konfiguration (2 Benutzer mit je 2 Monitoren )&lt;br /&gt;
##[[NVidia AGP + NVidia PCI Grafikkarte|X.org.conf Multiseat]]&lt;br /&gt;
&lt;br /&gt;
= XGL =&lt;br /&gt;
#NVidia Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### SLI Konfiguration&lt;br /&gt;
#ATI Grafikkarten &lt;br /&gt;
## AGP-Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
##PCI-E Karten&lt;br /&gt;
### Singlehead Konfiguration&lt;br /&gt;
### Dualhead Konfiguration&lt;br /&gt;
### Bigdesktop Konfiguration&lt;br /&gt;
#### [[xorg Konfigurationsdatei Bigdesktop mit Xorg und BerylXgl | ASUS EAX1950 XTX Bigdesktop 2 19 Zoll CRT Xgl und Xorg ]]&lt;br /&gt;
### Crossfire Konfiguration&lt;br /&gt;
# Intel Onboard-Grafik&lt;br /&gt;
# SiS Onboard-Grafik&lt;br /&gt;
#Matrox Grafikkarten&lt;br /&gt;
#Sonstige Grafikkarten&lt;br /&gt;
&lt;br /&gt;
''--[[Benutzer:TomcatMJ|TomcatMJ]] 21:41, 17. Aug 2006 (CEST)''&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[Musterkonfigurationen|Zurück zu den Musterkonfigurationen]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Grafikkarten und Monitore|Zurück zur &amp;quot;Grafikkarten und Monitore&amp;quot;-Übersicht]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
	<entry>
		<id>https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=22991</id>
		<title>Partition eines Festplattenimage mounten</title>
		<link rel="alternate" type="text/html" href="https://linupedia.org/wiki/mediawiki/index.php?title=Partition_eines_Festplattenimage_mounten&amp;diff=22991"/>
		<updated>2007-12-06T18:25:51Z</updated>

		<summary type="html">&lt;p&gt;Haveaniceday: /* Script zur Ermittlung der Mountoptionen */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Partition eines Festplattenimage mounten ==&lt;br /&gt;
&lt;br /&gt;
Wer sich von Festplatten oder partitionierten Wechseltatenträgern Image erstellt, kann eventuell einmal in die Verlegenheit kommen, dass er einige Daten eines der Filesysteme dieses Image benötigt. Nun müsste man ja das Image erst wieder komplett zurück auf eine Platte schreiben, und dann erst könnte man die entsprechende Partition mounten. Wenn es sich nicht um ein komprimiertes Image handelt, ist es aber auch möglich über ein [http://linux.die.net/man/8/losetup Loop-Device] und speziellen Optionen von [http://linux.die.net/man/8/mount mount] einzelne Partitionen innerhalb eines Image selbst zu mounten. ''(Ein komprimiertes Image müsste dazu erst wieder dekomprimiert werden.)'' Man benötigt dazu einen so genannten '''Offset'''-Wert als Mountoption. Dieser Wert gibt an, ab welcher Position im Image sich der Beginn dieser Partition befindet. Ermitteln kann man diesen Offset mit Hilfe der Partitionstabelle die man mit [http://linux.die.net/man/8/fdisk fdisk] aus einem Image ermitteln kann.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp #fdisk -l platte.image &lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&lt;br /&gt;
Disk platte.image: 0 MB, 0 bytes&lt;br /&gt;
255 heads, 63 sectors/track, 0 cylinders&lt;br /&gt;
Units = cylinders of 16065 * 512 = 8225280 bytes&lt;br /&gt;
&lt;br /&gt;
     Device   Boot      Start         End      Blocks   Id  System&lt;br /&gt;
platte.image1   *           1           4       32098+   6  FAT16&lt;br /&gt;
platte.image2               5         125      971932+   5  Extended&lt;br /&gt;
platte.image5               5          50      369463+  83  Linux&lt;br /&gt;
platte.image6              51         125      602406   83  Linux&lt;br /&gt;
You must set cylinders.&lt;br /&gt;
You can do this from the extra functions menu.&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Script zur Ermittlung der Mountoptionen ===&lt;br /&gt;
&lt;br /&gt;
Im folgenden wird ein Script '''help-mount-image.sh''' vorgestellt, dass den Offset für den Mountbefehl ermittelt und auch gleich die richtigen Mountbefehle für alle belegten Partitionen (1 bis 9 soweit vorhanden) des jeweiligen Images ausgibt.  &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#!/bin/bash &lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
# Author: haveaniceday&lt;br /&gt;
# Version: 1, Last updated: 12/2007&lt;br /&gt;
#----------------------------------------------------------------------&lt;br /&gt;
 &lt;br /&gt;
 # fdisk finden &lt;br /&gt;
 PATH=&amp;quot;/sbin:$PATH&amp;quot; &lt;br /&gt;
 if [ $# -lt 1 ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;usage: ${0##*/} &amp;lt;image&amp;gt;&amp;quot; &lt;br /&gt;
         exit 1 &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 IMAGE=$1 &lt;br /&gt;
 if [ ! -f $IMAGE ] &lt;br /&gt;
 then &lt;br /&gt;
         echo &amp;quot;Warnung, $IMAGE ist kein File&amp;quot; &lt;br /&gt;
 fi &lt;br /&gt;
 &lt;br /&gt;
 # tr -d '*' =&amp;gt; bootflag entfernen &lt;br /&gt;
 LANG=C fdisk -lu $IMAGE  2&amp;gt;&amp;amp;1 | tr -d '*' | grep &amp;quot;$IMAGE[0-9]&amp;quot; | while read par&lt;br /&gt;
t start end blocks id rest &lt;br /&gt;
 do &lt;br /&gt;
         echo &lt;br /&gt;
         echo &amp;quot;$read $part $start $end $blocks $id $rest&amp;quot; &lt;br /&gt;
         case $id in &lt;br /&gt;
         5|f|85) echo &amp;quot;Ignoriere extended partition&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         82) echo &amp;quot;Ignoriere Swap&amp;quot; &lt;br /&gt;
            continue &lt;br /&gt;
            ;; &lt;br /&gt;
         *) &lt;br /&gt;
           ;; &lt;br /&gt;
         esac &lt;br /&gt;
 &lt;br /&gt;
         let offset=$start*512 &lt;br /&gt;
         echo mount -o loop,ro,offset=$offset $IMAGE /mnt &lt;br /&gt;
 done &lt;br /&gt;
 exit 0 &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Die Benutzung ist simpel, einfach das Script mit dem Image als Option aufrufen, die entsprechende Partition aussuchen und mit dem vom Script ausgegebenen Mountbefehl nach '''/mnt''' mounten.&amp;lt;br&amp;gt;&lt;br /&gt;
(''In wenigen Einzelfällen kann es eventuell notwendig werden die Mountoptionen entsprechend dem Filesystemtype und dessen Eigenschaften anzupassen.'') Der mount-Befehl muss als root eingegeben&lt;br /&gt;
werden. Andere Benutzer haben keine Erlaubnis für so einen mount.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Beispiel einer Konsolausgabe Imagedatei ist '''platte.image''' im aktuellen Verzeichnis:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Linux:/data1/tmp # ./help-mount-image.sh platte.image &lt;br /&gt;
&lt;br /&gt;
 platte.image1 63 64259 32098+ 6 FAT16&lt;br /&gt;
mount -o loop,ro,offset=32256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image2 64260 2008124 971932+ 5 Extended&lt;br /&gt;
Ignoriere extended partition&lt;br /&gt;
&lt;br /&gt;
 platte.image5 64323 803249 369463+ 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
 platte.image6 803313 2008124 602406 83 Linux&lt;br /&gt;
mount -o loop,ro,offset=411296256 platte.image /mnt&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Linux:/data1/tmp # mount -o loop,ro,offset=32933376 platte.image /mnt&lt;br /&gt;
Linux:/data1/tmp # mount | grep /mnt&lt;br /&gt;
/data1/tmp/platte.image on /mnt type ext3 (ro,loop=/dev/loop0,offset=32933376)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Quellen und weiterführende Links ==&lt;br /&gt;
&lt;br /&gt;
* [http://www.linux-club.de/viewtopic.php?t=79797 Orginalbeitrag im Forum] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;!-- Mit freundlicher Genehmigung von [[Benutzer:haveaniceday|haveaniceday]] --&amp;gt;&lt;br /&gt;
[[Partition|zurück zu Partition]]&lt;br /&gt;
[[Category:Konsole]]&lt;br /&gt;
[[Category:Partitionen]]&lt;br /&gt;
[[Category:Scripte]]&lt;/div&gt;</summary>
		<author><name>Haveaniceday</name></author>
		
	</entry>
</feed>