解决 Windows 10 自带虚拟机运行 Ubuntu 18.04 卡顿的问题

来源: A guide how to run Ubuntu 18.04 in Enhanced Mode in Hyper-V

系统要求

控制端:Windows 10, 1803以及之后
受控端:Ubuntu 18.04

步骤

  1. 修改 Ubuntu18.04 以使用 xrdp

    #Get the scripts from GitHub
    $ sudo apt-get update
    $ sudo apt install git

    $ git clone https://github.com/jterry75/xrdp-init.git ~/xrdp-init
    #Make the scripts executable and run them…
    $ cd ~/xrdp-init/ubuntu/18.04/

    修改 install.sh,注释下面两行

    Enable the hv_sock module

    rmmod vmw_vsock_vmci_transport
    rmmod vsock

    运行 install.sh,并重启

    $ sudo chmod +x install.sh
    $ sudo ./install.sh
    $ reboot

    再次运行 install.sh

    #Run script again to finish setting up VM
    $ cd ~/xrdp-init/ubuntu/18.04/
    $ sudo ./install.sh

    关闭虚拟机以及hyper-v管理器

  2. 注册 Ubuntu 对话
    管理员权限运行命令(将Ubuntu换成你虚拟机的名字):

    Set-VM -VMName Ubuntu -EnhancedSessionTransportType HvSocket

  3. 在增强模式中开启
    重启虚拟机,进入增强模式界面。
    注意:不要选中打印机,目前有bug

  4. 登录
    成功以xorg模式登录

你可能感兴趣的:(解决 Windows 10 自带虚拟机运行 Ubuntu 18.04 卡顿的问题)