我有一台飞利浦电视,通过 HDMI 连接到我的电脑。电脑运行的是 Xubuntu 15.10。如果电视关闭,当我重新打开它时,屏幕是空白的 - 电脑没有发送信号。我必须手动重启电脑才能再次看到画面。
在 15.10 之前,当我遇到此问题时,我可以使用此处讨论的修复方法:Xubuntu 14.04 显示器关闭/打开后黑屏 我在 xorg.conf 中禁用了热插拔事件,并且他们提到的可选配置我也已放入。Light locker 已完全禁用,所有电源管理选项也是如此。这些功能在我升级到 15.10 之前一直有效 - 现在,即使这些解决方案仍然存在,问题又出现了。不知道这里该怎么做,因为其他一切都与 14.04 有关,而这些修复在这里没有起到作用。 :(
更新
尝试以下解决方案之一后,得到了以下一些附加信息:
xrandr --current
屏幕仍然亮着时的输出:
Screen 0: minimum 8 x 8, current 1920 x 1080, maximum 16384 x 16384
DVI-I-0 disconnected (normal left inverted right x axis y axis)
VGA-0 disconnected (normal left inverted right x axis y axis)
DVI-I-1 disconnected (normal left inverted right x axis y axis)
HDMI-0 connected 1814x1020+0+0 (normal left inverted right x axis y axis) 0mm x 0mm panning 1920x1080+0+0
1920x1080 60.00*+ 59.94 29.97 24.00 23.97 60.00
1360x768 60.02
1280x768 59.99
1280x720 60.00 59.94
1024x768 60.00
800x600 60.32
720x480 59.94 60.05
640x480 59.94 59.93
我尝试使用此命令重新启动显示器:
xrandr --output HDMI-0 --mode 1814x1020+2+0 --pos 0x0 --rotate normal
通过将其绑定到热键使用xbindkeys
:
# Wake up the display
"xrandr --output HDMI-0 --mode 1814x1020+2+0 --pos 0x0 --rotate normal"
control+w
答案1
好吧,我已经找到了一个解决这个问题的“肮脏”的方法。
出现黑屏时执行以下操作:
xrandr --output HDMI-0 --mode 1920x1080 --pos 0x0 --rotate normal --output VGA-0 --off
HDMI-0 = 连接电视的输出 1920x1080 = 您想要的模式(桌面分辨率) VGA-0 = 应断开连接的其他输出
要查找输出名称和支持的模式,请执行以下操作:
xrandr --current
这将为您提供断开连接和连接的输出及其支持的模式的列表(对于已连接的输出)。
但这只是一种解决方法,而不是我选择的解决方案