07
04/2018
Ubuntu16.04 VMware Workstation Unknow Display
在~/.profile中加入如下内容:
# change the resolution xrandr --newmode "1920x1080_60.00" 173.00 1920 2048 2248 2576 1080 1083 1088 1120 -hsync +vsync xrandr --addmode Virtual1 "1920x1080_60.00" xrandr --output Virtual1 --mode 1920x1080_60.00
.profile文件是个隐藏文件,可以使用如下命令调出来:
gedit ~/.profile
.profile在用户登录用加载执行。
上述的1920x1080_60.00是创建的新的分辨率的名字,后续的一系列数字可以通过命令如下命令得到:
cvt 1920 1080 60
表示创建一个1920x1080、刷新频率在60HZ的分辨率。
参考链接:https://blog.csdn.net/itas109/article/details/46334951
1 条评论