美文网首页
2022-03-17 Ubuntu 设置1920*1080

2022-03-17 Ubuntu 设置1920*1080

作者: alanwhy | 来源:发表于2022-03-17 15:35 被阅读0次

添加 /etc/X11/xorg.conf 文件,将此模式保存为默认分辨率。

1、sudo vim /etc/X11/xorg.conf

(如果没有安装vim,可以使用sudo gedit /etc/X11/xorg.conf

粘贴以下内容:

Section "Monitor"

Identifier "Configured Monitor"

Modeline "1920x1080_60.00"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync

Option "PreferredMode" "1920x1080_60.00"

EndSection

Section "Screen"

Identifier "Default Screen"

Monitor "Configured Monitor"

Device "Configured Video Device"

EndSection

Section "Device"

Identifier "Configured Video Device"

EndSection

2、保存。重启后就变成1920x1080了。

相关文章

网友评论

      本文标题:2022-03-17 Ubuntu 设置1920*1080

      本文链接:https://www.haomeiwen.com/subject/cmivdrtx.html