当前位置: 首页>>技术教程>>正文


无法通过 VMWare 在 Ubuntu 中获得 1920 x 1080

, ,

问题描述

我刚刚安装了 Ubuntu 并输入了 sudo apt-get install open-vm-tools

我可以将分辨率更改为 1920 x 1200,但不能更改为 1920 x 1080。有什么想法吗?

我尝试过 thisthis 但没有运气。第二个链接是 VirtualBox 的

我尝试更改主机 (Windows 8) 和来宾操作系统 (Ubuntu) 上的 VMWare 设置,但没有成功。确实需要这个才能工作。

我认为我没有正确运行虚拟机工具。显然我应该运行 .pl 文件,但是当我双击它时,会打开一个文本文件。

兰德尔:

xrandr
Screen 0: minimum 1 x 1, current 1360 x 768, maximum 8192 x 8192
Virtual1 connected 1360x768+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   800x600        60.0 +   60.3  
   2560x1600      60.0  
   1920x1440      60.0  
   1856x1392      60.0  
   1792x1344      60.0  
   1920x1200      59.9  
   1600x1200      60.0  
   1680x1050      60.0  
   1400x1050      60.0  
   1280x1024      60.0  
   1440x900       59.9  
   1280x960       60.0  
   1360x768       60.0* 
   1280x800       59.8  
   1152x864       75.0  
   1280x768       59.9  
   1024x768       60.0  
   640x480        59.9  
Virtual2 disconnected (normal left inverted right x axis y axis)
Virtual3 disconnected (normal left inverted right x axis y axis)
Virtual4 disconnected (normal left inverted right x axis y axis)
Virtual5 disconnected (normal left inverted right x axis y axis)
Virtual6 disconnected (normal left inverted right x axis y axis)
Virtual7 disconnected (normal left inverted right x axis y axis)
Virtual8 disconnected (normal left inverted right x axis y axis)

最佳答案

我的解决方案:

创建扩展名为 .sh 的文本文件。例如setscreen.sh

插入以下文本并保存。

xrandr --newmode "1920x1080"  173.00  1920 2048 2248 2576  1080 1083 1088 1120 -hsync +vsync
xrandr --addmode Virtual1 1920x1080
xrandr --output Virtual1 --mode 1920x1080

将此 .sh 文件作为可执行文件运行。屏幕应达到 1920×1080。

使用 “startup applications” 在启动时启动该文件。

注意:我运行的是 Mint 17,但这在 Ubuntu 中应该可以正常工作。

次佳答案

我在 VMware Player 12.1 下使用 Linux Mint Cinnamon 17.3 遇到了同样的问题。

VMware KB 上阅读有关 open-vm-tools 的更多信息,我发现使用 open-vm-tools-desktop 包是解决此问题的推荐方法。

所以我建议您还执行 sudo apt-get install open-vm-tools-desktop 。但请记住,只有在全屏模式下才会自动调整分辨率,而在窗口模式下则不会。

第三种答案

您可以向 xrander 添加模式。对于您来说,该命令将类似于:

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

您可能需要通过添加 --output Virtual1 选项来明确说明输出。我用 cvt 19200 1080 60 计算了这个命令参数。它们对你来说可能会有所不同。然后只需切换到该模式即可

xrandr --output Virtual1 --mode 1920x1080 --rate 60

参考资料

本文由Ubuntu问答整理, 博文地址: https://ubuntuqa.com/article/13925.html,未经允许,请勿转载。