xrandr hdmi पोर्ट पर मॉनिटर का पता नहीं लगाता है


20

मैंने आर्क को अपने लैपटॉप पर स्थापित किया है, लेकिन मुझे नहीं लगता कि यह समस्या आर्क के लिए विशिष्ट है। इस समय एकमात्र समस्या यह है कि hdmi पोर्ट से जुड़े डिस्प्ले का पता नहीं लगाया गया है। उदाहरण के लिए, गनोम कंट्रोल सेंटर से डिस्प्ले एप्लेट चल रहा है, तब 'डिटेक्ट' केवल लैपटॉप डिस्प्ले का पता लगाता है, हालांकि एचडीएमआई पोर्ट के माध्यम से लैपटॉप से ​​जुड़ा हुआ 2 मॉनिटर है। मुझे संदेह है कि समस्या xrandr एचडीएमआई पोर्ट से जुड़े मॉनिटर का पता नहीं लगा रही है। मैं इसे कैसे ठीक करूं?

Vga नियंत्रकों के लिए lspci -v से आउटपुट:

01:00.0 VGA compatible controller: nVidia Corporation Device 0df5 (rev a1) (prog-if 00 [VGA controller])
    Subsystem: Dell Device 0446
    Flags: bus master, fast devsel, latency 0, IRQ 16
    Memory at f0000000 (32-bit, non-prefetchable) [size=16M]
    Memory at c0000000 (64-bit, prefetchable) [size=256M]
    Memory at d0000000 (64-bit, prefetchable) [size=32M]
    I/O ports at 3000 [size=128]
    Expansion ROM at f1000000 [disabled] [size=512K]
    Capabilities: <access denied>
    Kernel driver in use: nouveau
    Kernel modules: nvidiafb, nouveau00:02.0 VGA compatible controller:

Intel Corporation 2nd Generation Core Processor Family Integrated Graphics Controller (rev 09) (prog-if 00 [VGA controller])
    Subsystem: Dell Device 0446
    Flags: bus master, fast devsel, latency 0, IRQ 49
    Memory at f1400000 (64-bit, non-prefetchable) [size=4M]
    Memory at e0000000 (64-bit, prefetchable) [size=256M]
    I/O ports at 4000 [size=64]
    Expansion ROM at <unassigned> [disabled]
    Capabilities: <access denied>
    Kernel driver in use: i915
    Kernel modules: i915

xrandr से उत्पादन:

Screen 0: minimum 320 x 200, current 1920 x 1080, maximum 8192 x 8192
LVDS1 connected 1920x1080+0+0 (normal left inverted right x axis y axis) 344mm x 193mm
   1920x1080      60.0*+   40.0 
   1400x1050      60.0 
   1280x1024      60.0 
   1280x960       60.0 
   1024x768       60.0 
   800x600        60.3     56.2 
   640x480        59.9 
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI2 disconnected (normal left inverted right x axis y axis)
DP1 disconnected (normal left inverted right x axis y axis)

जवाबों:


12

मैं यह समझ गया; मेरे उत्पन्न xorg.confगलत nvidia मॉड्यूल पथ था और Busid निर्दिष्ट नहीं किया था। मेरे द्वारा उपयोग की गई बस का पता लगाने के लिए:

$ lspci -v

01:00.0 VGA compatible controller: nVidia Corporation GT200 [GeForce GTX 260] (rev a1)

तब मैंने xorg.confइसे संपादित किया ताकि इसका एक खंड इसके समान हो:

Section "Device"
    Identifier "Device0"
    Driver "nvidia"
    VendorName "NVIDIA Corporation"
    BusID "PCI:01:00:0"
    Option "NoLogo" "true"
    Option "UseEDID" "true"
    Option "ConnectedMonitor" "DFP"
EndSection

Section "Files"
    ModulePath      "/usr/lib/<path to nvidia driver>"
    ModulePath      "/usr/lib/xorg/modules"
EndSection
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.