virtualbox의 듀얼 모니터 리눅스 게스트


8

최신 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

답변:


5

해결 방법으로 randr을 사용합니다.

xrandr --output VBOX1 --right-of VBOX0

자동 시작에 넣었습니다. 로그인 후 실행됩니다


2

conf 파일에 무엇이 있습니까? 모니터가 여러 개 있다고 명시 적으로 말하지 않으면 출력이 복제됩니다. conf를 수정하는 방법을 잘 모르는 경우 xorg archwiki 와 같은 몇 가지 훌륭한 자습서가 있습니다 .

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.