Fedora 17을 사용하여 사무실에서 트리플 모니터 데스크탑을 설정하려고하는데 불가능한 것 같습니다. 설정을 설명하겠습니다.
- 2 개의 그래픽 카드가 장착 된 노트북 ASUS K53SD, Intel 및 nVidia (Intel 카드로 화면 제어)
- HDMI 출력에 연결된 24 "Full HD 모니터 (Intel 카드로 제어)
- USB-HDMI 어댑터에 연결된 23 "Full HD 모니터 (/ dev / fb2의 프레임 버퍼를 통해)
- nVidia 카드로 제어되는 VGA 출력 (사용되지 않음)
우선, USB-HDMI 어댑터는 완벽하게 작동하며 녹색 화면을 제공합니다 (통신이 정상임을 의미). Xorg에서 프레임 버퍼를 통해 단일 모니터 설정을 구성하면 작동 할 수 있습니다. 여기에 지침을 얻은 페이지가 남습니다. http://plugable.com/2011/12/23/usb-graphics-and-linux
이제 인텔 드라이버로 두 개의 메인 모니터 (노트북 및 24 ")를 설정하고 프레임 버퍼로 23"를 설정하려고하지만 가장 성공적인 구성은 두 개의 메인 모니터가 작동하고 세 번째는 연결이 끊어진 것입니다.
이 작업을 수행하기 위해 무엇을 할 수 있는지 알고 있습니까?
여기에 xRandr 출력과 Xorg conf를 남겨 둡니다.
-> xrandr
Screen 0: minimum 320 x 200, current 3286 x 1080, maximum 8192 x 8192
LVDS1 connected 1366x768+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
1366x768 60.0*+
1024x768 60.0
800x600 60.3 56.2
640x480 59.9
VGA2 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1920x1080+1366+0 (normal left inverted right x axis y axis) 531mm x 299mm
1920x1080 60.0*+ 50.0 25.0 30.0
1680x1050 59.9
1680x945 60.0
1400x1050 74.9 59.9
1600x900 60.0
1280x1024 75.0 60.0
1440x900 75.0 59.9
1280x960 60.0
1366x768 60.0
1360x768 60.0
1280x800 74.9 59.9
1152x864 75.0
1280x768 74.9 60.0
1280x720 50.0 60.0
1440x576 25.0
1024x768 75.1 70.1 60.0
1440x480 30.0
1024x576 60.0
832x624 74.6
800x600 72.2 75.0 60.3 56.2
720x576 50.0
848x480 60.0
720x480 59.9
640x480 72.8 75.0 66.7 60.0 59.9
720x400 70.1
DP1 disconnected (normal left inverted right x axis y axis)
1920x1080_60.00 60.0
Xorg 파일 :
# Xorg configuration file for using a tri-head display
Section "ServerLayout"
Identifier "Layout0"
Screen 0 "HDMI" 0 0
Screen 1 "USB" RightOf "HDMI"
Option "Xinerama" "on"
EndSection
########### MONITORS ################
Section "Monitor"
Identifier "USB1"
VendorName "Unknown"
ModelName "Acer 24as"
Option "DPMS"
EndSection
Section "Monitor"
Identifier "HDMI1"
VendorName "Unknown"
ModelName "Acer 23SH"
Option "DPMS"
EndSection
########### DEVICES ##################
Section "Device"
Identifier "Device 0"
Driver "intel"
BoardName "GeForce"
BusID "PCI:0:02:0"
Screen 0
EndSection
Section "Device"
Identifier "USB Device 0"
driver "fbdev"
Option "fbdev" "/dev/fb2"
Option "ShadowFB" "off"
EndSection
############## SCREENS ######################
Section "Screen"
Identifier "HDMI"
Device "Device 0"
Monitor "HDMI1"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "USB"
Device "USB Device 0"
Monitor "USB1"
DefaultDepth 24
SubSection "Display"
Depth 24
EndSubSection
EndSection