无法在 CentOS 6 中设置双显示器

无法在 CentOS 6 中设置双显示器

我需要使用不同X11 DISPLAY不同的 UI 应用程序不同的物理监视器。每个应用程序在每个监视器上。

配置:

  • VDI输出:Acer K192HQL
  • HDMI via VDI输出:PHL 193V5
  • OSCentOS release 6.9 (Final)

配置如下Xorg

Section "ServerLayout"
        Identifier     "X.org Configured"
        Screen         "Screen0" LeftOf "Screen1"
        Screen         "Screen1" RightOf "Screen0"
EndSection

Section "ServerFlags"
        Option "DontZap" "yes"
        Option "BlankTime" "0"
        Option "StandbyTime" "0"
        Option "SuspendTime" "0"
        Option "OffTime" "0"
EndSection

Section "Monitor"
        Identifier   "Monitor0"
        ModelName    "LCD Panel 1280x1024"
        HorizSync    31.5 - 67.0
        VertRefresh  50.0 - 75.0
        Option      "dpms"
EndSection

Section "Screen"
        Identifier "Screen0"
        Device     "Videocard0"
        Monitor    "Monitor0"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "1280x1024"
        EndSubSection
EndSection

Section "Monitor"
        Identifier   "Monitor1"
        #ModelName    "LCD Panel 1280x1024"
        #HorizSync    31.5 - 67.0
        #VertRefresh  50.0 - 75.0
        Option      "dpms"
EndSection

Section "Screen"
        Identifier "Screen1"
        Device     "Videocard0"
        Monitor    "Monitor1"
        DefaultDepth     24
        SubSection "Display"
                Viewport   0 0
                Depth     24
                Modes    "1280x1024"
        EndSubSection
EndSection

以下是输出xrandr

Screen 0: minimum 320 x 200, current 1024 x 768, maximum 8192 x 8192
eDP1 connected (normal left inverted right x axis y axis)
   1280x1024     60.02 +
   1920x1080     59.50 +
   1400x1050     59.98
   1280x960      60.00
   1024x768      60.00
   800x600       60.32    56.25
   640x480       59.94
VGA1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 410mm x 230mm
   1366x768      59.79 +
   1280x800      59.81
   1280x720      60.00
   1024x768      75.08*   70.07    60.00
   832x624       74.55
   800x600       72.19    75.00    60.32    56.25
   640x480       75.00    72.81    66.67    60.00
   720x400       70.08
HDMI1 connected 1024x768+0+0 (normal left inverted right x axis y axis) 410mm x 230mm
   1280x1024     75.02 +  60.02
   1366x768      59.79 +
   1920x1080     60.00    59.94
   1280x720      60.00    59.94
   1024x768      75.08*   60.00
   800x600       75.00    60.32
   720x480       60.00    59.94
   640x480       75.00    72.81    66.67    60.00    59.94
   720x400       70.08
DP1 disconnected (normal left inverted right x axis y axis)

因此,正如您所看到的,我刚刚有Screen 0,但我需要两个屏幕来将每个应用程序发送到其专用屏幕(DISPLAY)。

我也在系统设置中看到此消息:

在此处输入图片描述

这里是个Xorg.0.log

相关内容