ddccontrol 无法工作,但以前可以工作

ddccontrol 无法工作,但以前可以工作

我想使用命令更改显示器(Dell S2216H)的亮度

ddccontrol -p -r 0x10 -w 53

此命令以前在 16.10 上有效,但现在无效,但给出了以下输出

robing for available monitors.......
Detected monitors :
No monitor supporting DDC/CI available.
If your graphics card need it, please check all the required kernel 
modules are loaded (i2c-dev, and your framebuffer driver).

的输出 ddccontrol -p是相同的

ddccontrol version 0.4.2
Copyright 2004-2005 Oleg I. Vdovikin ([email protected])
Copyright 2004-2006 Nicolas Boichat ([email protected])
This program comes with ABSOLUTELY NO WARRANTY.
You may redistribute copies of this program under the terms of the GNU General Public License.

Probing for available monitors.......
Detected monitors :
No monitor supporting DDC/CI available.
If your graphics card need it, please check all the required kernel 
modules are loaded (i2c-dev, and your framebuffer driver).

输出i2cdetect -l

i2c-3   unknown     i915 gmbus dpc                      N/A
i2c-1   unknown     i915 gmbus vga                      N/A
i2c-6   unknown     DPDDC-D                             N/A
i2c-4   unknown     i915 gmbus dpb                      N/A
i2c-2   unknown     i915 gmbus panel                    N/A
i2c-0   unknown     i915 gmbus ssc                      N/A
i2c-5   unknown     i915 gmbus dpd                      N/A

ddcontrol -p这是它工作时的输出在 pastebin

我在做的时候它停止工作了这个流程描述雅各布·弗莱姆, 但之后我进行了多次全新安装,但都没有成功,现在唯一不同的是,我正在运行 17.04,但我清楚地记得它在 16.10 上运行良好,但在全新安装的 16.10 上却失败了


更多信息

I2C 开发接口 - Linux 内核档案

Linux 帧缓冲区驱动程序

什么是 DPDDC-B/C i2c 设备?


最终我想实现这一目标ddccontrol需要为此努力

答案1

在我的计算机上(运行在 ubuntu 16.04 上),ddccontrol -p什么都没有显示,但sudo ddccontrol -p显示了我的显示器。

在 16.04 上,您必须是该组的成员i2c才能访问/dev/i2c-X设备。i2cdetect -l可以工作,因为它列出了 i2c 总线,它不会尝试打开它们。

相关内容