ubuntu18.04调整分辨率到1920*1080

1. 输入 xrandr 查看显示器名称:

 

 这里显示的是Virtual1。

2. 编辑profile。执行sudo vi /etc/profile,在最后输入:

xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 "1920x1080_60.00"

3. 保存文件后执行source /etc/profile。

4. 重启后分辨率已完成更新。

原文地址:https://www.cnblogs.com/tiandsp/p/15467681.html