3-monitors » История » Редакция 3
Редакция 2 (Рамиль Абдулбяров, 2012-10-11 18:07) → Редакция 3/11 (Рамиль Абдулбяров, 2012-10-11 18:49)
h1. Схема подключения 3 мониторов (Xorg server).
/etc/X11/xorg.conf
Сущности:
*Device* определение устройства. Свойства:
* Identifier - имя, label устройства
* Driver - тип драйвера (производитель драйвера)
* BusID - ID на шине (lspci)
* Option - (если на видеокарте несколько выходов, указываем тип порта)
* screen - номер на видеокарте.
*Monitor* можно задать разрешение экрана
* Identifier - label устройства
*Screen* Экран, строится на объединении сущностей Device и Monitor
* Identifier - label устройства
* Monitor - указываем ранее определённый monitor
* Device - указываем ранее определённый device
*ServerLayout* j,obq
<pre>
Section "ServerFlags"
Option "xinerama" "True"
EndSection
Section "ServerFlags"
Option "DontZap" "false"
EndSection
Section "Device"
Identifier "VideoDeviceNvidia-VGA"
Driver "nouveau"
BusID "PCI:1:0:0"
Option "ZaphodHeads" "VGA-2"
screen 0 # положение на видеокарте
EndSection
Section "Device"
Identifier "VideoDeviceNvidia-DVI"
Driver "nouveau"
BusID "PCI:1:0:0"
Option "ZaphodHeads" "DVI-I-1"
screen 1
EndSection
Section "Device"
Identifier "VideoDeviceIntel"
Driver "intel"
BusID "PCI:0:2:0"
screen 0
EndSection
Section "InputClass"
Identifier "Keyboard Defaults"
MatchIsKeyboard "yes"
Option "XkbLayout" "us,ru"
Option "XkbOptions" "grp:shift_toggle,grp_led:scroll"
Option "XkbVariant" ",winkeys"
EndSection
Section "Extensions"
Option "Composite" "Enable"
EndSection
Section "Monitor"
Identifier "Configured Monitor center"
EndSection
Section "Monitor"
Identifier "Configured Monitor left"
EndSection
Section "Monitor"
Identifier "Configured Monitor right"
EndSection
Section "Screen" # связывает монитор с конкретным выходом видеокарты
Identifier "Screen center"
Monitor "Configured Monitor center"
Device "VideoDeviceIntel"
EndSection
Section "Screen"
Identifier "Screen left"
Monitor "Configured Monitor left"
Device "VideoDeviceNvidia-VGA"
EndSection
Section "Screen"
Identifier "Screen right"
Monitor "Configured Monitor right"
Device "VideoDeviceNvidia-DVI"
EndSection
Section "ServerLayout"
Identifier "Default Layout"
Screen "Screen center"
Screen "Screen left" LeftOf "Screen center"
Screen "Screen right" RightOf "Screen center"
Option "Xinerama" "on"
Option "Clone" "off"
EndSection
Section "DRI"
Mode 0666
EndSection
</pre>