Virtualbox 中的 Arch Linux 总是忘记我的分辨率

Virtualbox 中的 Arch Linux 总是忘记我的分辨率

这是一个相当小的问题,但它仍然很烦人。每当我在 VB 中启动 Arch(DE 是 xfce)时,它总是默认使用较小的分辨率我使用 slim 登录,它使用窗口允许的最大分辨率。然后我必须更改窗口的大小才能使其再次填满。我的另一台虚拟机 Mint 不需要我这样做。编辑:我忘了说我已经安装了客户机附加组件,并按照 wiki 上的说明进行了设置。

答案1

创建一个名为的文件,/etc/X11/xorg.conf.d/10-monitor.conf内容如下:

Section "Monitor"
  Identifier             "Monitor0"
EndSection

Section "Device"
  Identifier             "Device0"
  Driver                 "vboxvideo" # Choose the driver
EndSection

Section "Screen"
  Identifier             "Screen0"  
  Device                 "Device0"
  Monitor                "Monitor0"
  DefaultDepth           24 # Choose the depth (16||24)
  SubSection             "Display"
    Depth                24
    Modes                "1280x720" # Choose the resolution
  EndSubSection
EndSection

更多信息请点击此处

相关内容