startx를 사용하는 듀얼 모니터 설정이 작동하지 않습니다.


1

두 개의 서로 다른 응용 프로그램을 실행하는 데 사용되는 두 개의 모니터가 있습니다. 예 :

  • 모니터 A는 크롬 브라우저를 실행해야합니다.
  • 모니터 B는 다른 크롬 브라우저를 실행해야합니다.

이것은 시스템 부팅 후 실행해야합니다.

아래의 xorg.conf

Section "ServerFlags"

        # Even if mouse detection fails, X will start
    Option         "AllowMouseOpenFail" "yes"
        # VT switching is disabled
    Option         "DontVTSwitch" "yes"
        # X restart (Ctrl+Alt+Backspace) is disabled
    Option         "DontZap" "yes"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Mouse0"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
   Identifier     "Keyboard0"
    Driver         "kbd"
EndSection


Section "InputDevice"

    # generated from default
    Identifier     "Mouse1"
    Driver         "mouse"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/psaux"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"

    # generated from default
    Identifier     "Keyboard1"
    Driver         "kbd"
EndSection
Section "Monitor"

    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "DELL ST2220M"
    HorizSync       30.0 - 83.0
    VertRefresh     56.0 - 76.0
    Option         "DPMS"
EndSection

Section "Monitor"

    # HorizSync source: edid, VertRefresh source: edid
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       30.0 - 82.0
    VertRefresh     56.0 - 76.0
EndSection

Section "Device"
     Identifier    "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 630"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    SubSection     "Display"
        Depth       24
        Modes      "1920x720"
    EndSubSection
EndSection

Section "Screen"
   Identifier      "Screen1"
   Device      "Device0"
   Monitor     "Monitor1"
   DefaultDepth    24
   SubSection      "Display"
    Depth      24
        Modes      "1920x720"
   EndSubSection
EndSection

Section "ServerLayout"
    Identifier "Layout0"
    Screen 0 "Screen0" 0 0
    InputDevice "mouse0" "CorePointer"
    InputDevice "keyboard0" "CoreKeyboard"
    Option         "Xinerama" "0"
EndSection

Section "ServerLayout"
    Identifier "Layout1"
    Screen 1 "Screen1" RightOf "Screen0"
    InputDevice "mouse1"
    InputDevice "keyboard1" 
    Option         "Xinerama" "1"
EndSection

런레벨 2의 init 스크립트에서, 나는 가지고있다.

startx /path/to/screen-0-app.sh -- :0 -layout Layout0 -config /path/to/displaylink.conf -nolisten tcp vt7 -novtswitch -sharevts &

startx /path/to/screen-1-app.sh -- :1 -layout Layout1 -config /path/to/displaylink.conf -nolisten tcp vt8 -novtswitch -sharevts &

displaylink.conf xorg.conf와 동일합니다.

screen-0-app.sh and screen-1-app.sh consist of 

exec xterm -e xrandr -s 1920x1080 &

exec chromium-browser --user-data-dir=~/.chromium --window-size=1920,1080 --window-position=0,0 --kiosk --incognito http://www.youtube.com/watch?v=MRbI6LwLz94

another screen consist of different youtube link with same setup

문제는, 한 대의 모니터가이 설정으로 작업 할 수 있다는 것입니다. 다음을 의미합니다.

크롬 브라우저에서 재생되는 Youtube 비디오 하나의 startx가 작동하지만 다른 모니터가 비어있는 것처럼 보이며 오류가 발생합니다.

(++) Using config file: "/home/atled/displaylink.conf"

(==) Using system config directory "/usr/share/X11/xorg.conf.d"

Fatal server error:
no screens found

Please consult the The X.Org Foundation support 
     at http://wiki.x.org
 for help. 
Please also check the log file at "/var/log/Xorg.0.log" for additional information.

 ddxSigGiveUp: Closing log

xorg.0.log 파일    [40.255]

X.Org X Server 1.11.3
Release Date: 2011-12-16
[    40.255] X Protocol Version 11, Revision 0
[    40.255] Build Operating System: Linux 2.6.42-26-generic i686 Ubuntu
[    40.255] Current Operating System: Linux atled-desktop 3.2.0-45-generic-pae #70-Ubuntu SMP Wed May 29 20:31:05 UTC 2013 i686
[    40.255] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-3.2.0-45-generic-pae root=UUID=8057523e-f126-4b9b-9534-b7c4cda86c8d ro acpi=off apm=off quiet splash vt.handoff=7
[    40.255] Build Date: 04 August 2012  01:51:24AM
[    40.255] xorg-server 2:1.11.4-0ubuntu10.7 (For technical support please see http://www.ubuntu.com/support)
[    40.255] Current version of pixman: 0.24.4
[    40.255]    Before reporting problems, check http://wiki.x.org
        to make sure that you have the latest version.
[    40.255] Markers: (--) probed, (**) from config file, (==) default setting,
        (++) from command line, (!!) notice, (II) informational,
        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
[    40.255] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Jun  7 20:34:44 2013
[    40.256] (++) Using config file: "/home/atled/displaylink.conf"
[    40.256] (==) Using system config directory "/usr/share/X11/xorg.conf.d"
[    40.265] (++) ServerLayout "Layout0"
[    40.265] (**) |-->Screen "Screen0" (0)
[    40.265] (**) |   |-->Monitor "Monitor0"
[    40.265] (**) |   |-->Device "Device0"
[    40.265] (**) |-->Input Device "Mouse0"
[    40.265] (**) |-->Input Device "Keyboard0"
[    40.265] (**) Option "DontVTSwitch" "yes"
[    40.265] (**) Option "DontZap" "yes"
[    40.265] (**) Option "AllowMouseOpenFail" "yes"
[    40.265] (**) Option "Xinerama" "0"
[    40.265] (==) Automatically adding devices
[    40.265] (==) Automatically enabling devices
[    40.265] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (WW) The directory "/usr/share/fonts/X11/100dpi/" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (WW) The directory "/usr/share/fonts/X11/100dpi" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (WW) The directory "/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType" does not exist.
[    40.265]    Entry deleted from font path.
[    40.265] (==) FontPath set to:
        /usr/share/fonts/X11/misc,
        built-ins
[    40.265] (==) ModulePath set to "/usr/lib/i386-linux-gnu/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"
[    40.265] (WW) Hotplugging is on, devices using drivers 'kbd', 'mouse' or 'vmmouse' will be disabled.
[    40.265] (WW) Disabling Mouse0
[    40.265] (WW) Disabling Keyboard0
[    40.265] (II) Loader magic: 0xb77195a0
[    40.265] (II) Module ABI versions:
[    40.265]    X.Org ANSI C Emulation: 0.4
[    40.265]    X.Org Video Driver: 11.0
[    40.265]    X.Org XInput driver : 16.0
[    40.265]    X.Org Server Extension : 6.0
[    40.266] (--) PCI:*(0:1:0:0) 10de:0f00:19da:1282 rev 161, Mem @ 0xfb000000/16777216, 0xd0000000/268435456, 0xce000000/33554432, I/O @ 0x0000ec00/128, BIOS @ 0x????????/524288
[    40.266] (II) Open ACPI successful (/var/run/acpid.socket)
[    40.266] (II) LoadModule: "extmod"
[    40.267] (II) Loading /usr/lib/xorg/modules/extensions/libextmod.so
[    40.267] (II) Module extmod: vendor="X.Org Foundation"
[    40.267]    compiled for 1.11.3, module version = 1.0.0
[    40.267]    Module class: X.Org Server Extension
[    40.267]    ABI class: X.Org Server Extension, version 6.0
[    40.267] (II) Loading extension MIT-SCREEN-SAVER
[    40.267] (II) Loading extension XFree86-VidModeExtension
[    40.267] (II) Loading extension XFree86-DGA
[    40.267] (II) Loading extension DPMS
[    40.267] (II) Loading extension XVideo
[    40.267] (II) Loading extension XVideo-MotionCompensation
[    40.267] (II) Loading extension X-Resource
[    40.267] (II) LoadModule: "dbe"
[    40.267] (II) Loading /usr/lib/xorg/modules/extensions/libdbe.so
[    40.267] (II) Module dbe: vendor="X.Org Foundation"
[    40.267]    compiled for 1.11.3, module version = 1.0.0
[    40.267]    Module class: X.Org Server Extension
[    40.267]    ABI class: X.Org Server Extension, version 6.0
[    40.267] (II) Loading extension DOUBLE-BUFFER
[    40.267] (II) LoadModule: "glx"
[    40.267] (II) Loading /usr/lib/i386-linux-gnu/xorg/extra-modules/libglx.so
[    40.286] (II) Module glx: vendor="NVIDIA Corporation"
[    40.286]    compiled for 4.0.2, module version = 1.0.0
[    40.286]    Module class: X.Org Server Extension
[    40.286] (II) NVIDIA GLX Module  304.88  Wed Mar 27 14:51:59 PDT 2013
[    40.286] (II) Loading extension GLX
[    40.286] (II) LoadModule: "record"
[    40.286] (II) Loading /usr/lib/xorg/modules/extensions/librecord.so
[    40.286] (II) Module record: vendor="X.Org Foundation"
[    40.286]    compiled for 1.11.3, module version = 1.13.0
[    40.286] (II) LoadModule: "dri"
[    40.287] (II) Loading /usr/lib/xorg/modules/extensions/libdri.so
[    40.287] (II) Module dri: vendor="X.Org Foundation"
[    40.287]    compiled for 1.11.3, module version = 1.0.0
[    40.287]    ABI class: X.Org Server Extension, version 6.0
[    40.287] (II) Loading extension XFree86-DRI
[    40.287] (II) LoadModule: "dri2"
[    40.287] (II) Loading /usr/lib/xorg/modules/extensions/libdri2.so
[    40.287] (II) Module dri2: vendor="X.Org Foundation"
[    40.287]    compiled for 1.11.3, module version = 1.2.0
[    40.287]    ABI class: X.Org Server Extension, version 6.0
[    40.287] (II) Loading extension DRI2
[    40.287] (II) LoadModule: "nvidia"
[    40.287] (II) Loading /usr/lib/i386-linux-gnu/xorg/extra-modules/nvidia_drv.so
[    40.287] (II) Module nvidia: vendor="NVIDIA Corporation"
[    40.287]    compiled for 4.0.2, module version = 1.0.0
[    40.287]    Module class: X.Org Video Driver
[    40.288] (II) NVIDIA dlloader X Driver  304.88  Wed Mar 27 14:32:42 PDT 2013
[    40.288] (II) NVIDIA Unified Driver for all Supported NVIDIA GPUs
[    40.288] (++) using VT number 7

[    40.288] (II) Loading sub module "fb"
[    40.288] (II) LoadModule: "fb"
[    40.288] (II) Loading /usr/lib/xorg/modules/libfb.so
[    40.288] (II) Module fb: vendor="X.Org Foundation"
[    40.288]    compiled for 1.11.3, module version = 1.0.0
[    40.288]    ABI class: X.Org ANSI C Emulation, version 0.4
[    40.288] (II) Loading sub module "wfb"
[    40.288] (II) LoadModule: "wfb"
[    40.288] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    40.288] (II) Module wfb: vendor="X.Org Foundation"
[    40.288]    compiled for 1.11.3, module version = 1.0.0
[    40.288]    ABI class: X.Org ANSI C Emulation, version 0.4
[    40.288] (II) Loading sub module "ramdac"
[    40.288] (II) LoadModule: "ramdac"
[    40.288] (II) Module "ramdac" already built-in
[    40.288] (II) Loading /usr/lib/i386-linux-gnu/xorg/extra-modules/nvidia_drv.so
[    40.288] (II) Loading /usr/lib/xorg/modules/libwfb.so
[    40.288] (II) Loading /usr/lib/xorg/modules/libfb.so
[    40.288] (**) NVIDIA(0): Depth 24, (--) framebuffer bpp 32
[    40.288] (==) NVIDIA(0): RGB weight 888
[    40.288] (==) NVIDIA(0): Default visual is TrueColor
[    40.288] (==) NVIDIA(0): Using gamma correction (1.0, 1.0, 1.0)
[    40.288] (**) NVIDIA(0): Enabling 2D acceleration
[    40.878] (II) NVIDIA(GPU-0): Display (DELL ST2220M (DFP-0)) does not support NVIDIA 3D
[    40.878] (II) NVIDIA(GPU-0):     Vision stereo.
[    40.891] (II) NVIDIA(GPU-0): Display (Philips 224EL (DFP-1)) does not support NVIDIA 3D
[    40.891] (II) NVIDIA(GPU-0):     Vision stereo.
[    40.894] (II) NVIDIA(0): NVIDIA GPU GeForce GT 630 (GF108) at PCI:1:0:0 (GPU-0)
[    40.894] (--) NVIDIA(0): Memory: 1048576 kBytes
[    40.894] (--) NVIDIA(0): VideoBIOS: 70.08.aa.00.00
[    40.894] (II) NVIDIA(0): Detected PCI Express Link width: 16X
[    40.894] (--) NVIDIA(0): Interlaced video modes are supported on this GPU
[    40.895] (EE) NVIDIA(GPU-0): EVO Push buffer channel allocation failed
[    40.895] (EE)  *** Aborting ***
[    40.895] (EE) NVIDIA(GPU-0): Failed to allocate EVO core DMA push buffer
[    40.895] (EE)  *** Aborting ***
[    40.895] (EE) NVIDIA(0): Failing initialization of X screen 0
[    40.896] (II) UnloadModule: "nvidia"
[    40.896] (II) Unloading nvidia
[    40.896] (II) UnloadModule: "wfb"
[    40.896] (II) Unloading wfb
[    40.897] (II) UnloadModule: "fb"
[    40.897] (II) Unloading fb
[    40.897] (EE) Screen(s) found, but none have a usable configuration.
[    40.897]
Fatal server error:
[    40.897] no screens found
[    40.897]
Please consult the The X.Org Foundation support
         at http://wiki.x.org
 for help.
[    40.897] Please also check the log file at "/var/log/Xorg.0.log" for additional information.
[    40.897]
[    40.897]  ddxSigGiveUp: Closing log
[    40.897] Server terminated with error (1). Closing log file.

어느 쪽이든을 사용하여 설정해보십시오. xrandr 또는 (더 나은) nvidia-settings 그럼 그걸 작동시킬 수 있니?
terdon

답변:


1

디스플레이와 모니터는 같은 것이 아닙니다.

별도의 X 서버를 시작하여 각 모니터에 표시하려고합니다. 원하는 작업이 아닙니다.

1 개의 디스플레이로 하나의 X 서버를 시작하고 싶습니다. :0 )와 두 개의 모니터 ( :0.0:0.1 ).

너는 하나 있어야한다. startx 시동 전화 :0, 스크립트는 두 응용 프로그램을 모두 시작하고 두 응용 프로그램 중 하나를 두 번째 화면으로 이동해야합니다. --window-position 매개 변수.

모니터가 나란히 있고 첫 번째 모니터가 1920x1080이고 왼쪽 상단이 0,0이면 두 번째 모니터의 왼쪽 위 모서리는 1920,0이됩니다.


이 아이디어는 좋다, 나는 하나만 할 수 있지만 다른 응용 프로그램이 작동하지 않는 이유는 여러 xserver이다. 필자의 경우 xorg.0.log 및 xorg.1.log는 모니터를 완벽하게 구성하지만 하나의 디스플레이 만 구성되었다.
aravindKrishna

-windows-position은 위치를 변경하더라도 작동하지 않습니다. 같은 모니터에서 실행중인 응용 프로그램이 다른 모니터에서 실행되지 않습니다.
aravindKrishna

X 서버는 디스플레이 장치를 독점적으로 제어합니다. 귀하의 로그에 따르면, X 서버는 :0 X 서버를 켜고 두 화면을 제어합니다. :1 두 번째 디스플레이에 바인딩 할 수 없습니다. 두 개의 X 서버를 실행하는 경우 두 개의 X 서버를 마우스로 드래그하거나 한 화면에서 다른 화면으로 창을 드래그 할 수 없습니다.
Darth Android

@aravindKrishna 마침내 당신을 위해 일 했나요? 나는 비슷한 것을하고 있는데 이것은 솔루션에서 찾을 수있는 가장 가까운 것입니다.
isaacsloan

1

다스가 말한 것. 또한, xorg.conf 너는 둘 다 참조한다. monitor0 (에 대한 screen0 ) 및 monitor1 (에 대한 screen1 )하지만 당신은 하나만 가지고있다. monitor 정의 된 섹션 monitor0.

내 생각 엔 X가 찾으려는 화면이 없다는 것입니다. monitor1 그러나 그것은 존재하지 않습니다.


로드 된 내 layout1, monitor1 및 내 모니터 1은 xorg.1.log의 philips이며 필립스의 모든 디스플레이 장치를 사용할 수 있음을 의미합니다. 즉, 올바른 구성이지만 x 서버를 잘못 시작한 것으로 생각합니다.
aravindKrishna
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.