WIN10 上的 VMWARE Workstation Player 14 与 Ubuntu 18.04 在 4K 显示器上修复 DPI 缩放

WIN10 上的 VMWARE Workstation Player 14 与 Ubuntu 18.04 在 4K 显示器上修复 DPI 缩放

我想了解有关 Linux 的更多信息,因此我下载了 ubuntu iso,并在 vmware 中启动了它。

但是我找不到强制 DPI 缩放的任何方法,除了尝试更改实际分辨率之外,显示设置下没有其他选项。

我尝试了多种修复方法,例如兼容模式,以及这些:

xrandr --output eDP1 --scale 1.25x1.25

gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"

我在其他 stackexchange 帖子中找到了它。

它们对我都不起作用。


还有其他解决方案吗?我使用的是 Dell XPS 15 9560 4K 15.6 英寸笔记本电脑,如果不进行 x2 - x2.5 缩放,ubuntu 就无法使用。


运行 xrandr 的输出:

Screen 0: minimum 1 x 1, current 3840 x 1919, maximum 8192 x 8192
Virtual1 connected primary 3840x1919+0+0 (normal left inverted right x axis y axis) 0mm x 0mm
   3840x1919     60.00*+
   2560x1600     59.99  
   1920x1440     60.00  
   1856x1392     60.00  
   1792x1344     60.00  
   1920x1200     59.88  
   1600x1200     60.00  
   1680x1050     59.95  
   1400x1050     59.98  
   1280x1024     60.02  
   1440x900      59.89  
   1280x960      60.00  
   1360x768      60.02  
   1280x800      59.81  
   1152x864      75.00  
   1280x768      59.87  
   1024x768      60.00  
   800x600       60.32  
   640x480       59.94  
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

您已经找到的命令xrandr使用了错误的输出 eDP1,它通常是笔记本电脑显示屏。在您的xrandr输出中,您会看到一行

Virtual1 connected primary 3840x1919+0+0 (normal left inverted right x axis y axis) 0mm x 0mm

该行中的第一个单词(Virtual1)是输出名称,因此在命令中使用它应该可以工作:

xrandr --output Virtual1 --scale 0.5x0.5

请注意,这不是持久设置,因此重启后您必须再次输入命令。我没有使用 gnome,所以我不能告诉您是否可以在 gnome 设置的某个位置进行设置。我自己在工作时设置了具有不同 DPI 的显示器,并使用了类似的 xrandr 命令,并进行了键绑定,以便我可以在连接屏幕后按下一个键。

相关内容