我正在运行 Ubuntu Gnome remix 12.10,但它无法识别我的显示器。我的硬件是:
Intel i3 3225 板载 HD 4000
/ 位于 OCZ Vertex 4 SSD 上
显示器是一个旧的 IBM Thinkvision,带有 vga 连接器,通过适配器连接到 dvi 插槽。
当我启动它时,我进入的是低分辨率的 gdm,然后我登录的桌面也是低分辨率的。无法识别显示器。我成功地使用xrandr
in更改了分辨率,/etc/gdm/Init/Default
但对这种解决方法不太满意。
我已经将有关竞争条件的内容标记为红色,但这更多的是 LightDM 的问题,切换到 GDM 应该会有所帮助。
谢谢你的想法。
答案1
考虑检查 xorg 日志,很可能/var/log/Xorg.0.log
会查找EE
指示任何问题的条目,这些问题可能会导致找到更合适的解决方案。
如果没有找到任何内容,您可以创建该文件/etc/X11/xorg.conf.d/10-monitor.conf
,或编辑 上的等效部分/etc/X11/xorg.conf
,这是配置显示的老式方法。
Section "Monitor"
Identifier "monitor0"
EndSection
Section "Device"
Identifier "gpu0"
Driver "intel"
EndSection
Section "Screen"
Identifier "screen0"
Device "gpu0"
Monitor "monitor0"
DefaultDepth 24
SubSection "Display"
Depth 24
Modes "1600x900" "1280x720" #Choose the resolution
EndSubSection
EndSection
您可以更改、添加或删除所需的分辨率,甚至添加刷新率,例如“1920x1080_60.0”。