XORGデュアルグラフィックカード設定NVIDIA

XORGデュアルグラフィックカード設定NVIDIA

Stack Exchangeに関連する質問をしましたが、誰もそこから何も理解していないようです。したがって、ここで質問の形式を指定します。そうすれば、より良い幸運があるでしょう。

私は2つのDVI、1つのマイクロHDMI、1つのVGA出力、4つの27インチモニターを備えた2つのNVIDIA GT 610グラフィックカードを設定しようとしています。各カードに2つのDVI出力を使用して取り付けたすべてのモニターをカバーしたいと思います。 1 つのカードに 2 つのモニターがあり、2 枚目のカードに別の 2 つのモニターがあります。質問はそれぞれが欲しいということです。各モニターは独自のモニターのように動作します(Xineramaではありません)スタイルで、最大化するとアプリケーションは拡張されません。単一のカードに属する2つのモニターまたは私のドックが2つのモニターにまたがっていることは望ましくありません。これが現在機能しているXinerama機能であることを知っていますが(必須ではありません)、以前と同じように機能したいと思います。 2つのモニターにXineramaがなく、単一のグラフィックカード設定(1つのモニターで最大化し、ドックは1つのモニターにのみ拡張され、モニター間でドラッグ)。

これを読むのに多くの時間を費やしましたが、この特定の設定に役立つ可能性があるものが見つかりませんでした。

よろしくお願いします!

Section "ServerFlags"
    Option      "DontZap"       "no"
    Option      "AutoAddDevices"        "false"
    Option      "AutoEnableDevices"     "false"
EndSection

Section "ServerLayout"
    Identifier     "Layout0"
    Screen      0  "Screen0" 0 0
    Screen  1  "Screen1" RightOf "Screen0"
    Screen  2  "Screen2" RightOf "Screen1"
    Screen  3  "Screen3" RightOf "Screen2"
    InputDevice    "Keyboard0" "CoreKeyboard"
    InputDevice    "Mouse0" "CorePointer"
    InputDevice    "MouseW0" "SendCoreEvents"
    Option         "Xinerama" "1"
EndSection

Section "InputDevice"
    Identifier     "Keyboard0"
    Driver         "evdev"
    Option     "Device" "/dev/input/by-path/pci-0000:00:14.0-usb-0:7:1.0-event-kbd"
    Option "xkb_rules" "evdev"
    Option "xkb_model" "evdev"
    Option "xkb_layout" "us"
    Option "GrabDevice" "on"
EndSection

Section "InputDevice"
    Identifier     "Mouse0"
    Driver         "evdev"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/mouse0"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

Section "InputDevice"
    Identifier     "MouseW0"
    Driver         "evdev"
    Option         "Protocol" "auto"
    Option         "Device" "/dev/input/by-id/usb-PixArt_USB_Optical_Mouse-event-mouse"
    Option         "Emulate3Buttons" "no"
    Option         "ZAxisMapping" "4 5"
EndSection

# graphics card 1 slot 0
Section "Device"
    Identifier     "Device0"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:1:0:0"
EndSection

# graphics card 1 slot 1
Section "Device"
    Identifier     "Device1"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:1:0:1"
    Option "ProbeAllGpus" "false"
EndSection

# graphics card 2 slot 0
Section "Device"
    Identifier     "Device2"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:2:0:0"
    Option "ProbeAllGpus" "false"
EndSection

# graphics card 2 slot 1
Section "Device"
    Identifier     "Device3"
    Driver         "nvidia"
    VendorName     "NVIDIA Corporation"
    BoardName      "GeForce GT 610"
    BusID          "PCI:2:0:1"
    Option "ProbeAllGpus" "false"
EndSection

Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Samsung"
    ModelName      "Samsung S27B350"
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Samsung"
    ModelName      "Samsung S27B350"
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor2"
    VendorName     "Samsung"
    ModelName      "Samsung S27A550H"
    Option         "DPMS"
EndSection

Section "Monitor"
    Identifier     "Monitor3"
    VendorName     "Anchor Communications Inc"
    ModelName      "Anchor Communications Inc VS278"
    Option         "DPMS"
EndSection

Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "DFP-1: nvidia-auto-select +1920+0"
    SubSection     "Display"
            Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "DFP-0: nvidia-auto-select +1920+0"
    SubSection     "Display"
            Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen2"
    Device         "Device2"
    Monitor        "Monitor2"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "DFP-1: nvidia-auto-select +1920+0"
    SubSection     "Display"
            Depth       24
    EndSubSection
EndSection

Section "Screen"
    Identifier     "Screen3"
    Device         "Device3"
    Monitor        "Monitor3"
    DefaultDepth    24
    Option         "Stereo" "0"
    Option         "metamodes" "DFP-0: nvidia-auto-select +1920+0"
    SubSection     "Display"
            Depth       24
    EndSubSection
EndSection

ベストアンサー1

おすすめ記事