Mat*_*tto 1 xorg intel-graphics drivers display-resolution
拥有集成 Intel HD 4600 显卡的主板。我正在运行全新安装的 Ubuntu 15.10,并安装了英特尔的官方驱动程序:intel linux 01 graphics
但我无法在分辨率菜单选项中获得高于 1024x768 的分辨率。使用 xrandr 我可以设置 1280x720 的最大分辨率,但是使用 1920x1080 分辨率会中断。(在 Windows 中启动我可以设置 1920x1080 和更大的分辨率)。
这是我的 xorg.0.log。我认为有一些错误,但我不知道如何解决它们:http : //pastebin.com/raw/pujD1hUw
我将不胜感激。问候!
小智 7
临时解决方案:
cvt 1920 1080 [your refresh rate]例如 cvt 1920 1080 60
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
复制 Modeline 部分后的输出行并将其添加到 xrandr:
sudo xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
sudo xrandr --verbose --addmode VGA1 "1920x1080_60.00"
sudo xrandr --output VGA1 --mode "1920x1080_60.00"
Run Code Online (Sandbox Code Playgroud)如果我在你的日志中看到它,你有 3 个输出:VGA1、HDMI1 和 HDMI2。--output VGA1如有必要,您可以使用两个 HDMI进行更改。
永久解决方案:
/etc/X11/xorg.conf使用 root 权限编辑文件:例如 sudo gedit /etc/X11/xorg.conf
添加/编辑这些部分:
Section "Monitor"
Modeline "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
EndSection
Run Code Online (Sandbox Code Playgroud)和
Section "Screen"
SubSection "Display"
Modes "1920x1080@60"
Run Code Online (Sandbox Code Playgroud)
重新启动系统。
| 归档时间: |
|
| 查看次数: |
10825 次 |
| 最近记录: |