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

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

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

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

我试过了, 和但没运气。第二个链接是 VirtualBox

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

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

xrandr:

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)

在此处输入图片描述

答案1

我的解决方案:

创建一个扩展名为 .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 文件作为可执行文件运行。屏幕应变为 1920x1080。

使用“启动应用程序”在启动时启动该文件。

注意:我正在运行 Mint 17,但它在 Ubuntu 中应该可以正常运行。

答案2

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

阅读更多open-vm-tools关于VMware 知识库,我发现使用open-vm-tools-desktop包是解决这个问题的推荐方法。

因此我建议你也执行一下sudo apt-get install open-vm-tools-desktop。但请记住,只有在全屏模式下才会自动调整分辨率,而不是在窗口模式下。

答案3

您可以为 添加模式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

答案4

我遇到了同样的问题。我安装了 vmware tools,但无法让它全屏显示。你要尝试在虚拟机(ubuntu)中更改分辨率。对我来说,这个方法有效。由于某种原因,它无法动态识别我想要的分辨率,我不得不手动为 ubuntu 更改分辨率。

相关内容