वर्चुअलबॉक्स में डुअल मॉनिटर लाइनक्स गेस्ट


8

मैंने पढ़ा कि नए वर्चुअलबॉक्स दोहरे मॉनिटर वाले लिनक्स मेहमानों का समर्थन करता है। जब मैं अपना आर्क वीएम शुरू करता हूं, तो दो मॉनिटर प्राप्त करने में सक्षम हूं, लेकिन मैं 2 मॉनिटर की अवधि के लिए एक्सगॉर नहीं प्राप्त कर सकता हूं। वे लगातार क्लोन मोड में प्रदर्शित करते हैं। क्या किसी ने सफलतापूर्वक ऐसा किया है? यदि हां, तो क्या आप अपना 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 का उपयोग करके
Kyle Smith


मुझे पता है कि यह पुरानी पोस्ट है, लेकिन इसने मेरे लिए xrandr --output VBOX1 --right-of VBOX0 thanx
benzebuth

जवाबों:


5

मैं एक वर्कअराउंड के रूप में रैंडर का उपयोग करता हूं

xrandr --output VBOX1 --right-of VBOX0

मैंने इसे अपने ऑटोस्टार्ट में डाल दिया। इसे आपके लॉगिन करने के बाद चलाया जाएगा


2

आपकी गोपनीय फ़ाइल में क्या है? यदि आपने स्पष्ट रूप से यह नहीं बताया है कि आपके पास कई मॉनिटर हैं तो यह आउटपुट को क्लोन कर देगा। यदि आप अनिश्चित हैं कि ऐसा करने के लिए कॉन्फिडेंस को कैसे संशोधित किया जाए, तो कई अच्छे ट्यूटोरियल हैं जैसे कि xorg आर्चविकी में

हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.