关键词

linux mint 18虚拟机下设置1080P分辨率的方法

下面是“linux mint 18虚拟机下设置1080P分辨率的方法”的完整攻略。

确认虚拟机分辨率

在设置分辨率之前,需要确认当前虚拟机分辨率。在Linux Mint 18中,可以通过以下命令确认当前分辨率:

xdpyinfo | grep -i dimensions

该命令会返回当前虚拟机的分辨率信息,例如:

dimensions:    1366x768 pixels (361x203 millimeters)

安装虚拟机增强功能

在Linux Mint 18中,设置高分辨率需要安装虚拟机增强功能。可以通过以下步骤安装:

  1. 在VirtualBox中,选择“设备”->“安装增强功能…”
  2. 在Linux Mint 18中,打开终端,输入以下命令安装驱动:
sudo apt-get update
sudo apt-get install virtualbox-guest-dkms virtualbox-guest-utils virtualbox-guest-x11
  1. 安装完成后,重启虚拟机。

修改xorg.conf文件

安装完成虚拟机增强功能后,需要修改xorg.conf文件以设置分辨率。按照以下步骤进行:

  1. 在Linux Mint 18中,打开终端,输入以下命令以备份xorg.conf文件:
sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak
  1. 打开xorg.conf文件并编辑,输入以下命令:
sudo vim /etc/X11/xorg.conf

如果没有vim,请使用其他文本编辑器。

  1. 在文件末尾添加以下内容:
Section "Screen"
    Identifier "Screen0"
    Monitor "Virtual Monitor"
    Device "VirtualBox Graphics Adapter"
    SubSection "Display"
        Modes "1920x1080"
    EndSubSection
EndSection

该配置将虚拟机设置为1920x1080分辨率。根据实际需要修改。

  1. 保存并关闭文件。

重新启动虚拟机

完成以上步骤后,重新启动虚拟机,即可看到分辨率已经生效。

示例说明

以下是两个示例:

设置1440x900分辨率

以下是编辑xorg.conf文件的示例:

Section "Screen"
    Identifier "Screen0"
    Monitor "Virtual Monitor"
    Device "VirtualBox Graphics Adapter"
    SubSection "Display"
        Modes "1440x900"
    EndSubSection
EndSection

该配置将虚拟机设置为1440x900分辨率。保存并重新启动虚拟机后,即可看到分辨率已经生效。

设置2560x1440分辨率

以下是编辑xorg.conf文件的示例:

Section "Screen"
    Identifier "Screen0"
    Monitor "Virtual Monitor"
    Device "VirtualBox Graphics Adapter"
    SubSection "Display"
        Modes "2560x1440"
    EndSubSection
EndSection

该配置将虚拟机设置为2560x1440分辨率。保存并重新启动虚拟机后,即可看到分辨率已经生效。

本文链接:http://task.lmcjl.com/news/7473.html

展开阅读全文