系统相关
首页 > 系统相关> > Linux虚拟机显示模糊问题

Linux虚拟机显示模糊问题

作者:互联网

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

需要设置正确的分辨率;

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 的分辨率即可

 

标签:profile,1080,虚拟机,模糊,1920,xrandr,Linux,分辨率,1920x1080
来源: https://www.cnblogs.com/morningsunlll/p/14492686.html