使用 HDMI 将笔记本电脑连接至液晶电视

使用 HDMI 将笔记本电脑连接至液晶电视

我有一台电视,我想通过 HDMI 将我的 Ubuntu 14.04 笔记本电脑连接到它。当我在两个设备之间连接 HDMI 电缆时,我发现能够在 Ubuntu 的显示设置中检测到这两个设备。但在电视上我什么也看不到。

$ xrandr
Screen 0: minimum 320 x 200, current 2390 x 768, maximum 32767 x 32767
LVDS1 connected primary 1366x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
1366x768       59.9*+
1360x768       59.8     60.0  
1024x768       60.0  
800x600        60.3     56.2  
640x480        59.9  
VGA1 disconnected (normal left inverted right x axis y axis)
HDMI1 connected 1024x768+1366+0 (normal left inverted right x axis y axis) 500mm x 375mm
1024x768       75.0*+   60.0  
1920x1080i     60.1     50.0     60.0  
1280x720       60.0     50.0     59.9  
800x600        60.3  
720x576        50.0  
720x480        60.0     59.9  
640x480        75.0     60.0     59.9  
DP1 disconnected (normal left inverted right x axis y axis)
VIRTUAL1 disconnected (normal left inverted right x axis y axis)

也尝试过

xrandr --output HMDI1 --auto

该命令执行时没有任何警告,但电视屏幕没有任何反应;它仍然是蓝色的并显示“无信号”。

我按照说明在 Ubuntu 论坛上并尝试了该命令,但发现此错误

$ xrandr --output TMDS-1 --auto
warning: output TMDS-1 not found; ignoring

显卡信息

 *-display               
   description: VGA compatible controller
   product: Core Processor Integrated Graphics Controller
   vendor: Intel Corporation
   physical id: 2
   bus info: pci@0000:00:02.0
   version: 02
   width: 64 bits
   clock: 33MHz
   capabilities: msi pm vga_controller bus_master cap_list rom
   configuration: driver=i915 latency=0
   resources: irq:42 memory:f0000000-f03fffff memory:e0000000-efffffff ioport:e080(size=8)

我怎样才能让它工作?

答案1

您的电视可能正在宣传无法显示的 1024x768 模式。

您可以使用以下命令之一来查看您的电视是否可以显示其他模式:

xrandr --output HDMI1 --mode 1920x1080i
xrandr --output HDMI1 --mode 1280x720
xrandr --output HDMI1 --mode 1024x768 --rate 60

答案2

在 LXQt 设置 > 显示器设置(电视打开且 HDMI 插入电视和电脑)中选择快速菜单,然后在下拉框中选择统一视图

答案3

这是我所做的:-

xrandr --listmonitors

对于我的东芝笔记本电脑,它给出了以下内容:-

0: +*eDP-1 1600/344x900/194+0+0  eDP-1

要获取 HDMI 输出:-

xrandr --output HDMI-1 --same-as eDP-1

相关内容