2831
            
                            Запускаем два монитора на двух видеокартах NVIDIA и ATI
	
	
			Имеется встроенное видео Radeon HD 7660D и PCI GeForce 9600 GT. Появилась необходимость подключения двух мониторов по одному на каждую видеокарту.  Решение расписывать не буду, просто оставлю здесь вывод команды 
 00:01.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] Trinity [Radeon HD 7660D]
01:00.0 VGA compatible controller: NVIDIA Corporation G94 [GeForce 9600 GT] (rev a1)
И свой конфигурационный файл
 
Кому будет нужно тот глядя на это дело, всё сделает по аналогии. Всем добра.
 
				
	
    lspci | grep VGA
01:00.0 VGA compatible controller: NVIDIA Corporation G94 [GeForce 9600 GT] (rev a1)
И свой конфигурационный файл
mhwd.conf
Section "ServerLayout"
Identifier "Layout0"
# Option "Xinerama" "on" # если используются KDE, то раскоментировать
Screen 0 "Screen1"
Screen 1 "Screen0" LeftOf "Screen1"
EndSection
 
Section "Device"
	Identifier  "Device0"
	Driver      "radeon"
	BusID       "PCI:0:1:0"
	Option      "DRI3"    "1"
	Option      "DRI"     "3"
EndSection
Section "Monitor"
    Identifier     "Monitor0"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection
Section "Monitor"
    Identifier     "Monitor1"
    VendorName     "Unknown"
    ModelName      "Unknown"
    HorizSync       28.0 - 33.0
    VertRefresh     43.0 - 72.0
    Option         "DPMS"
EndSection
Section "Device"
	Identifier  "Device1"
	Driver      "nouveau"
	BusID       "PCI:1:0:0"
	Option      "DRI"    "true"
	Option "DRI" "3"
EndSection
 
Section "Screen"
    Identifier     "Screen0"
    Device         "Device0"
    Monitor        "Monitor0"
    DefaultDepth    24
    Option         "RenderAccel" "true"
#    Option         "TwinView" "0"
#    Option         "metamodes" "DFP: nvidia-auto-select +0+0"
    SubSection     "Display"
        Modes      "1440x900"
        Depth       24
    EndSubSection
EndSection
Section "Screen"
    Identifier     "Screen1"
    Device         "Device1"
    Monitor        "Monitor1"
    DefaultDepth    24
    Option         "RenderAccel" "true"
    SubSection     "Display"
        Modes      "1920x1080"
        Depth       24
    EndSubSection
EndSection
 
Section "DRI"
        Group  "video"
        Mode   0666
EndSection
 
 
Section "Extensions"
	Option "Composite" "Enable"
	Option "RENDER"    "Enable"
EndSection
 
 
Section "InputClass"
	Identifier          "Keyboard Defaults"
	MatchIsKeyboard	    "yes"
	Option              "XkbOptions" "terminate:ctrl_alt_bksp"
EndSectionКому будет нужно тот глядя на это дело, всё сделает по аналогии. Всем добра.
0 комментариев