我想了解更多关于linux的知识,所以我下载了ubuntu,并在vmware中启动了它。
但是,我找不到任何方法来强迫DPI缩放,除了试图改变实际的分辨率之外,在显示设置下没有其他选项。
我尝试过多个修复方法,例如可压缩模式,这些:
xrandr --output eDP1 --scale 1.25x1.25
gsettings set org.gnome.mutter experimental-features "['scale-monitor-framebuffer']"我在其他stackexchange帖子中找到的。
他们两个人都不为我工作。
还有别的解决办法吗?我使用的是戴尔XPS 1595604K 15.6英寸笔记本电脑,如果没有x2 - x2.5比例,就无法使用ubuntu。
运行X射线的输出:
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)发布于 2018-05-19 17:18:21
您已经找到的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命令,并做了一个键绑定,以便我可以按下键后,连接屏幕。
https://askubuntu.com/questions/1038140
复制相似问题