我在fedora 24上遇到屏幕分辨率问题。
屏幕保持1024x768,1280x1024不可用。
挖掘一点我发现,在arch linux论坛上,这个命令:https://bbs.archlinux.org/viewtopic.php?id=73738
gtf 1280 1024 60
xrandr --newmode "1280x1024_60.00" 108.88 1280 1360 1496 1712 1024 1025 1028 1060 -HSync +Vsync
xrandr --addmode DVI-1 1280x1024_60.00
xrandr --output DVI-1 --mode 1280x1024_60.00
这解决了我的问题,但新模式不会在系统重启时持续存在。任何人都知道即使在系统重启后如何强制使用此配置?
答案 0 :(得分:0)
您可以将首选的分辨率放到如下文件中:
在/etc/X11/xorg.conf.d /
中创建一个文件40 monitor.conf
THREE.RawShaderMaterial
重新启动X系统。
如果不起作用,请尝试在同一路径中创建下两个文件,然后重新启动:
30 graphic.conf
Section "Monitor"
Identifier "VGA1"
Option "PreferredMode" "1280x1024"
EndSection
50 screen.conf
Section "Device"
Identifier "Intel Integrated"
Driver "intel"
EndSection
请阅读此处了解更多详情:
https://ask.fedoraproject.org/en/question/8301/how-do-i-change-my-monitors-resolution/
答案 1 :(得分:0)
将 autorandr 下载到您的桌面并试用
例如,我有带 hdmi 输出和第二个屏幕的笔记本电脑:
xrandr --output HDMI-0 --auto --left-of eDP-1-1
autorandr --save workstation1
autorandr --change
其中工作站 1 是要保存的自定义设置。可以使用任何其他名称,home、work 等。
或者使用 arandr 将配置文件保存在文件中