我在 Stack Exchange 上问了一个相关问题,似乎没有人理解那里的任何内容,所以我将在这里格式化这个问题,也许会有更好的运气。
我正在尝试设置 2 个 NVIDIA GT 610 显卡,均配有 2 个 DVI、1 个 Micro HDMI 和 1 个 VGA 输出,以及 4 个 27 英寸显示器。我只想使用每张卡上的 2 个 DVI 输出来覆盖我已经安装的所有显示器我在一张卡上有两个显示器,在第二张卡上有另外两个显示器我的问题是我希望每个显示器都充当它自己的显示器(不是 Xinerama 风格),如果我最大化并且应用程序不会跨越。属于单个卡的两个显示器,或者我也不希望我的扩展坞也跨两个显示器,我知道这是 Xinerama 功能,现在可以使用(不需要),但我希望它能够像以前那样工作。在两台显示器、单显卡设置上没有 Xinerama(最大化到一台显示器和扩展坞仅跨越一台显示器并跨显示器拖动)。
我花了很多时间阅读它,但我找不到任何可以帮助我完成此特定配置的内容。
提前致谢!
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