최신 VirtualBox가 듀얼 모니터가있는 Linux 게스트를 지원한다는 것을 읽었습니다. Arch VM을 시작할 때 두 개의 모니터를 시작할 수 있지만 Xorg를 두 번째 모니터로 확장 할 수는 없습니다. 그들은 지속적으로 클론 모드로 표시됩니다. 누구든지 이것을 성공적으로 했습니까? 그렇다면 xorg.conf를 공유 할 수 있습니까?
편집 : 내 xorg.conf (테스트로 증분 BusID를 시도했지만 이전과 동일했습니다).
Section "ServerLayout"
Identifier "X.org Configured"
Screen 0 "Screen0" 0 0
Screen 1 "Screen1" RightOf "Screen0"
InputDevice "Mouse0" "CorePointer"
InputDevice "Keyboard0" "CoreKeyboard"
EndSection
Section "Files"
ModulePath "/usr/lib/xorg/modules"
FontPath "/usr/share/fonts/misc/"
FontPath "/usr/share/fonts/TTF/"
FontPath "/usr/share/fonts/OTF/"
FontPath "/usr/share/fonts/Type1/"
FontPath "/usr/share/fonts/100dpi/"
FontPath "/usr/share/fonts/75dpi/"
EndSection
Section "Module"
Load "record"
Load "dbe"
Load "dri2"
Load "glx"
Load "extmod"
Load "dri"
EndSection
Section "InputDevice"
Identifier "Keyboard0"
Driver "kbd"
EndSection
Section "InputDevice"
Identifier "Mouse0"
Driver "mouse"
Option "Protocol" "auto"
Option "Device" "/dev/input/mice"
Option "ZAxisMapping" "4 5 6 7"
EndSection
Section "Monitor"
Identifier "Monitor0"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Monitor"
Identifier "Monitor1"
VendorName "Monitor Vendor"
ModelName "Monitor Model"
EndSection
Section "Device"
Identifier "Card0"
Screen 0
Driver "vboxvideo"
BusID "PCI:0:2:0"
EndSection
Section "Device"
Identifier "Card1"
Screen 1
Driver "vboxvideo"
BusID "PCI:0:2:1"
EndSection
Section "Screen"
Identifier "Screen0"
Device "Card0"
Monitor "Monitor0"
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
Section "Screen"
Identifier "Screen1"
Device "Card1"
Monitor "Monitor1"
SubSection "Display"
Viewport 0 0
Depth 24
EndSubSection
EndSection
1
업데이트 : Xrandr 에서이 작업을 수행 할 수 있으므로 구성 오류 여야합니다. 나는 xrandr --output VBOX1 --right-of VBOX0을 사용하여 작동시켰다
—
Kyle Smith
나는 이것이 이전 게시물입니다 알지만,이 사람은 나를 xrandr를 --output VBOX1 --right-의 VBOX0 고맙습니다 위해 속임수를 썼는지
—
benzebuth