xrandr이 HDMI 포트에서 모니터를 감지하지 못함

xrandr이 HDMI 포트에서 모니터를 감지하지 못함

내 노트북에 Arch가 설치되어 있지만 이 문제가 Arch에만 국한된 문제는 아닌 것 같습니다. 현재 유일한 문제는 hdmi 포트에 연결된 모니터가 감지되지 않는다는 것입니다. 예를 들어, gnome 제어 센터에서 디스플레이 애플릿을 실행한 다음 "감지"하면 HDMI 포트를 통해 노트북에 연결된 두 번째 모니터가 있더라도 노트북 디스플레이만 감지합니다. 문제는 xrandr이 HDMI 포트에 연결된 모니터를 감지하지 못하는 것 같습니다. 이 문제를 어떻게 해결할 수 있나요?

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)

답변1

xorg.conf그것은 나에게 일어났습니다. 잘못된 경로와 지정된 버스 ID가 없는 nvidia 모듈을 생성했습니다 . 내가 사용하는 버스를 확인하려면:

$ 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

관련 정보