HDMI1 断开

dya*_*min 14 xorg multiple-monitors hdmi

我正在尝试让辅助显示器与我的笔记本电脑一起工作。我正在运行 Ubuntu 16.04 LTS。我在同一台笔记本电脑上安装了 Windows 10,它可以在 Windows 10 中运行。目前xrandr -q输出:

Screen 0: minimum 8 x 8, current 1600 x 900, maximum 32767 x 32767
eDP1 connected 1600x900+0+0 (normal left inverted right x axis y axis) 382mm x 215mm
   1600x900      60.08*+
   1440x900      59.89  
   1368x768      60.00  
   1360x768      59.80    59.96  
   1152x864      60.00  
   1280x720      60.00  
   1024x768      60.00  
   1024x576      60.00  
   960x540       60.00  
   800x600       60.32    56.25  
   864x486       60.00  
   800x450       60.00  
   640x480       59.94  
   720x405       60.00  
   640x360       60.00  
HDMI1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)
Run Code Online (Sandbox Code Playgroud)

当我插入 HDMI 和弦时,我在 dmesg 中没有看到任何突出的内容,并且 /var/log/Xorg.0.log 没有记录任何内容。

根据lspci -v我的显卡有这个:

00:02.0 VGA compatible controller: Intel Corporation Haswell-ULT Integrated Graphics Controller (rev 0b) (prog-if 00 [VGA controller])
        Subsystem: Toshiba America Info Systems Haswell-ULT Integrated Graphics Controller
        Flags: bus master, fast devsel, latency 0, IRQ 48
        Memory at a0000000 (64-bit, non-prefetchable) [size=4M]
        Memory at 90000000 (64-bit, prefetchable) [size=256M]
        I/O ports at 5000 [size=64]
        Expansion ROM at <unassigned> [disabled]
        Capabilities: <access denied>
        Kernel driver in use: i915
        Kernel modules: i915
Run Code Online (Sandbox Code Playgroud)

我安装了 xserver-xorg-video-intel 和 libdrm-intel1。

我也试过

xrandr --newmode "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode HDMI1 1920x1080_60.00
xrandr --output HDMI1 --mode 1920x1080_60.00
Run Code Online (Sandbox Code Playgroud)

然后在我得到的最后一个命令上xrandr: Configure crtc 1 failed

xrandr --output HDMI1 --auto 什么都不做。

有人推荐任何东西或尝试任何东西吗?当我插入 HDMI 和弦时,显示器的电源指示灯变为蓝色,几秒钟后显示“未检测到信号”。所以它至少知道它已插入,但就像笔记本电脑没有在那里听一样。

dya*_*min 5

解决了,我只需要运行这个:

xrandr --output HDMI1 --auto --right-of eDP1
Run Code Online (Sandbox Code Playgroud)