LINUX.ORG.RU

xorg.conf и две видеокарты

 , ,


0

1

Здравствуйте.

Прошу помощи у сообщества. Имеется 2 видеокарты и 3 монитора, одна PCI-E (AMD) к ней подключены 2 монитора, другая интегрированная (intel) к ней один.

На открытых драйверах все работает идеально, кроме поддержки 3D. При установки проприетарного драйвера работают только два монитора подключенные к AMD, так как вносятся изменения в «xorg.conf». Пытался до писать «xorg.conf» своими руками, два дня мучений результата ноль.

Пожалуйста помогите разобраться как и что мне делать.
xorg.conf стандартный

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
	Screen	    1  "1-CRT1"
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "0-DFP1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "1920 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
	Option	    "PreferredMode" "1920x1080"
EndSection

Section "Monitor"
	Identifier   "0-CRT1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1920x1080"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "0 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "Monitor-DFP1" "0-DFP1"
	Option	    "Monitor-CRT1" "0-CRT1"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

xorg.conf с изменениями

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen      0  "aticonfig-Screen[0]-0" 0 0
EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Monitor"
	Identifier   "0-DFP1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "1920 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
	Option	    "PreferredMode" "1920x1080"
EndSection

Section "Monitor"
	Identifier   "0-CRT1"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
	Option	    "PreferredMode" "1920x1080"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "0 0"
	Option	    "Rotate" "normal"
	Option	    "Disable" "false"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	Option	    "Monitor-DFP1" "0-DFP1"
	Option	    "Monitor-CRT1" "0-CRT1"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Device"
   	Identifier "Intel"
   	Driver 	   "intel"
	Option	   "Monitor-CRT1" "1-CRT1"
	BusID      "PCI:0:2:0"
EndSection

Section "Monitor"
	Identifier   "1-CRT1"
	Option	    "PreferredMode" "1280x1024"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "3000 609"
	Option	    "Disable" "false"
EndSection

Section "Screen"
	Identifier "intel-screen"
	Device     "Intel"
EndSection



Последнее исправление: mark_black (всего исправлений: 7)

Новый xorg.conf
Теперь работают 3 монитора но на том который подключен к intel нету рабочего стола только при ctrl+alt+F2 там терминал

Section "ServerLayout"
	Identifier     "aticonfig Layout"
	Screen	    0  "aticonfig-Screen[0]-0" 0 0
	EndSection

Section "Module"
EndSection

Section "Monitor"
	Identifier   "aticonfig-Monitor[0]-0"
	Option	    "VendorName" "ATI Proprietary Driver"
	Option	    "ModelName" "Generic Autodetecting Monitor"
	Option	    "DPMS" "true"
EndSection

Section "Device"
	Identifier  "aticonfig-Device[0]-0"
	Driver      "fglrx"
	BusID       "PCI:1:0:0"
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "aticonfig-Device[0]-0"
	Monitor    "aticonfig-Monitor[0]-0"
	DefaultDepth     24
	SubSection "Display"
		Viewport   0 0
		Depth     24
	EndSubSection
EndSection

Section "Device"
   	Identifier "Intel"
   	Driver 	   "intel"
	Option	   "Monitor-CRT1" "1-CRT1"
	BusID      "PCI:0:2:0"
EndSection

Section "Monitor"
	Identifier   "1-CRT1"
	Option	    "PreferredMode" "1280x1024"
	Option	    "TargetRefresh" "60"
	Option	    "Position" "3000 609"
	Option	    "Disable" "false"
EndSection

Section "Screen"
	Identifier "aticonfig-Screen[0]-0"
	Device     "Intel"
	Monitor    "1-CRT1"
EndSection

mark_black
() автор топика

Запусти X -configure и посмотри что оно сгенерит. Как правило, оно определяет все девайсы и генерит оптимальный конфиг.

iron ★★★★★
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.