Linux虚拟机显示模糊问题

时间:2024-03-06 12:36:13

问题在于界面显示分辨率错误问题,需要设置正确的分辨率;

需要设置正确的分辨率;

xrandr命令 查看系统已支持的分辨率,Virtual1 为显示器的名称,可以发现没有1920 * 1080的分辨率

vim /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"
source /etc/profile

最后在 Ubuntu的设置项里面 Setting、Displays、 中选择1920 * 1080 的分辨率即可