Astra Linux.Справка.Многомониторный режим

Материал из ТХАБ.РФ
Перейти к: навигация, поиск

Настройка многомониторного режима в Astra Linux

Ниже приведен конфигурационный файл графического сервера xorg.conf с настройкой рабочего стола растянутого на два монитора, он должен подойти и для Вашей системы(с правками разрешений Ваших мониторов, в конфигурационном файле указаны необходимые комментарии). Для корректной работы многомониторного режима отображения одного рабочего стола рекомендуем использовать мониторы с одинаковым разрешением.

xorg.conf:

Section "ServerLayout"

Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"

EndSection

Section "Files"

ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/X11/misc"
FontPath "/usr/share/fonts/X11/100dpi/:unscaled"
FontPath "/usr/share/fonts/X11/75dpi/:unscaled"
FontPath "/usr/share/fonts/X11/Type1"
FontPath "/usr/share/fonts/X11/100dpi"
FontPath "/usr/share/fonts/X11/75dpi"
FontPath "/usr/share/fonts/msttcorefonts"
FontPath "built-ins"

EndSection

Section "Module"

Load "record"
Load "dri"
Load "dri2"
Load "extmod"
Load "dbe"
Load "glx"

EndSection

Section "InputDevice"

Identifier "Keyboard0"
Driver "kbd"
Option "XkbLayout" "us,ru"
Option "XkbOptions" "grp:ctrl_shift_toggle"

EndSection

Section "InputDevice"

Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
# Option "ZAxisMapping" "4 5 6 7"

EndSection

Section "Monitor"

Identifier "MonitorLVDS"
# VendorName "Monitor Vendor"
ModelName "Monitor Model"
Option "DPMS" "False"
Option "Position" "0 0"

EndSection

Section "Monitor"

Identifier "MonitorVGA"
# VendorName "Monitor Vendor"
ModelName "Monitor Model"
Option "DPMS" "False"
Option "RightOF" "MonitorLVDS"
Option "Position" "1280 0"
#Option "Position" "1366 0"
# Опция Position зависит от разрешения первого монитора

EndSection


Section "Device"

### Available Driver options are:-
### Values: <i>: integer, <f>: float, <bool>: "True"/"False",
### <string>: "String", <freq>: "<f> Hz/kHz/MHz"
### [arg]: arg optional
#Option "ColorKey" # <i>
#Option "Dac6Bit" # [<bool>]
Option "DRI" "True"# [<bool>]
#Option "NoDDC" # [<bool>]
#Option "ShowCache" # [<bool>]
#Option "PageFlip" # [<bool>]
Option "Tiling" "True"
Option "XvPreferOverlay" "True"
Option "FallbackDebug" "False"
Option "XvMC" "True"
Identifier "Card0"
Driver "intel"
VendorName "Intel Corporation"
BoardName "Core Processor Integrated Graphics Controller"
BusID "PCI:0:2:0"
Option "monitor-VGA1" "MonitorLVDS"
Option "monitor-HDMI1" "MonitorVGA"
#по логу /var/log/Xorg.log.0 можно определить к каким выходам подключены мониторы, возможно вместо monitor-HDMI1 monitor-VGA1 будут активны
#выходы monitor-DP1 monitor-DP2 monitor-HDMI2

EndSection

Section "Screen"

Identifier "Screen0"
Device "Card0"
Monitor "MonitorLVDS"
SubSection "Display"
Viewport 0 0
Depth 24
# Modes "1366x768" # разрешение вашего монитора 1
Modes "1280x1024"
EndSubSection

EndSection

Section "Screen"

Identifier "Screen0"
Device "Card0"
Monitor "MonitorVGA"
SubSection "Display"
Viewport 0 0
Depth 24
#Modes "1280x1024" # разрешение вашего монитора 2
Modes "1680x1050"
EndSubSection
EndSection