VMware/安装 Arch Linux 为虚拟机
这篇文章是关于如何在 VMware 产品,比如 Workstation Player,Fusion 或 Workstation Pro 中安装Arch Linux。
编译进内核的驱动程序(模块)[编辑 | 编辑源代码]
lsmod | grep modulename
进行确认),可以将其添加到 mkinitcpio 的 MODULES
列表。例如:
/etc/mkinitcpio.conf
... MODULES=(... vmw_balloon vmw_pvscsi vsock vmw_vsock_vmci_transport ...)
确保 重新生成 initramfs。
vmw_balloon
- 物理内存管理驱动。它可以像一个气球一样被“吹大”,在客户机上申请内存,并通过监视器释放掉这部分内存,使得这部分物理内存可以被分配给其它客户机使用;也可以"放气",以允许虚拟机使用更多物理内存。还支持将反分配状态(deallocated)的虚拟机原本所占的内存释放回主机,而无需彻底停用虚拟机。vmw_pvscsi
- VMware 平行虚拟化 SCSI(PVSCSI)的主机总线适配器(HBA)。vmw_vmci
- 虚拟机通信接口(VMCI)。VMCI 虚拟设备的作用是实现虚拟环境中的主机-客机间高速通信。vmwgfx
- 这是 VMware SVGA2 虚拟显卡的 DRM 驱动,作用是 3D 加速。支持 KMS。vmxnet3
- VMware 的 vmxnet3 虚拟网卡所需模块。- open-vm-tools包 10.0 以上版本包含了一个基于 FUSE 实现的 HGFS 文件系统,支持 Linux 4.0 及以上版本内核,用于主机-客机间共享目录。
如果你在某种监视器(比如 VMware vSphere Hypervisor)上运行 Arch Linux,那么同时需要安装下面这些模块。当虚拟机间通信时,客户机-服务器类型的应用可以通过 VMCI 虚拟设备向 VMCI 套接字(vsock)接口进行写入:
vsock
- 虚拟套接字协议。其作用是允许虚拟机,主机或监视器间像 TCP/IP 协议一样通信。vmw_vsock_vmci_transport
- 基于 VMCI 实现的虚拟套接字。
某些模块,例如旧的 vmhgfs
目录共享模块,还需要额外地手工编译,并手工从 systemd 启用服务,才能正常运转。
VMware Tools 与 Open-VM-Tools 方案对比[编辑 | 编辑源代码]
2007 年,VMware 将 VMware Tools 中的大部分代码以 LGPL 协议发布,这就是 Open-VM-Tools。官方的 VMware Tools 不再单独向 Arch Linux 提供。
以往,VMware Tools 方案所提供的网络与储存驱动是最好的,而且还带有时间同步等功能。然而网络与 SCSI 驱动这部分代码现已合并入 Linux 内核了。
VMware Tools 曾经有使用 Unity mode 功能的优势,但由于使用的人不多且维护困难,于是从 VMWare Workstation 12 开始移除了 Linux 客户机的 Unity mode 支持。详情请阅此跟帖的答案。
Open-VM-Tools[编辑 | 编辑源代码]
实用工具[编辑 | 编辑源代码]
open-vm-tools包 软件包里包括如下工具:
vmtoolsd
- 负责汇报虚拟机状态的服务。vmware-checkvm
- 用于检测虚拟机中是否在运行着某程序的工具。vmware-toolbox-cmd
- 用于收集宿主系统信息的工具。vmware-user
- 用来在宿主机和虚拟机之间共享剪切板(复制/粘贴)的工具。vmware-vmblock-fuse
- 文件系统工具。基于 FUSE(Filesystem in Userspace)实现了宿主/客机之间拖拽文件的功能。vmware-xferlogs
- 向虚拟机的日志文件输出日志与调试信息。vmhgfs-fuse
- 挂载 HGFS 共享目录的工具。
安装[编辑 | 编辑源代码]
安装 open-vm-tools包。然后启动并启用 vmtoolsd.service
和 vmware-vmblock-fuse.service
。
如果主机和客户机间复制粘贴功能无法正常工作,请尝试手动安装 gtkmm3包。
官方的 VMware Tools[编辑 | 编辑源代码]
模块[编辑 | 编辑源代码]
vmblock
- 文件系统驱动。支持在主机-客机间拖拽文件。已被vmware-vmblock-fuse
取代。vmci
- 主机-客户机间的高性能通信接口。vmmon
- 虚拟机监视器。vmnet
- 网络驱动。vsock
- VMCI 套接字。
vmware-vmblock-fuse
这一组件不是以 内核 模块的形式实现的;且除非你禁用了 fuse
,vmblock
已被从内核中移除。如果需要启用这些功能,需要手动启用 systemd 服务,具体操作见下文。
在客户机安装[编辑 | 编辑源代码]
安装依赖项:base-devel包组(用于编译模块),net-tools包(提供 ifconfig
供安装程序调用)和 linux-headers包 (提供内核头文件)。另外需要 devtools包 包中的 pkgctl
来签出 open-vm-tools
。
然后为安装程序创建假 init 目录:
# for x in {0..6}; do mkdir -p /etc/init.d/rc${x}.d; done
挂载安装程序:
# mount /dev/cdrom /mnt
解压(以解压到 /root
为例):
# tar xf /mnt/VMwareTools*.tar.gz -C /root
开始安装:
# perl /root/vmware-tools-distrib/vmware-install.pl
若安装时出现如下的错误,都可以安全忽略:
- VMXNET 3 虚拟网卡
- "Warning: This script could not find mkinitrd or update-initramfs and cannot remake the initrd file!"
- 在系统中找不到 Fuse 组件
启用 vmware-vmblock-fuse
systemd 服务(请确保你手动安装了依赖或使用了 -s
参数)。The open-vm-tools
source code should be checked out using the Arch build system.
$ pkgctl repo clone open-vm-tools $ cd open-vm-tools $ makepkg -s --asdeps # cp vm* /usr/lib/systemd/system
启用 vmware-vmblock-fuse.service
和 vmtoolsd.service
。
接下来重新启动虚拟机。
登录并启动 VMware Tools:
# /etc/init.d/rc6.d/K99vmware-tools start
另外,可以通过创建 /etc/systemd/system/vmwaretools.service
文件来在启动时自动启动 vmware-tools
:
/etc/systemd/system/vmwaretools.service
[Unit] Description=VMWare Tools daemon [Service] ExecStart=/etc/init.d/vmware-tools start ExecStop=/etc/init.d/vmware-tools stop PIDFile=/var/lock/subsys/vmware TimeoutSec=0 RemainAfterExit=yes [Install] WantedBy=multi-user.target
然后启用 vmwaretools.service
。
Xorg 配置[编辑 | 编辑源代码]
需要安装以下依赖:xf86-input-vmmouse包,xf86-video-vmware包,以及 mesa包。
应该只需要这几个包就可以启动至 graphical target
了。接下来 /etc/xdg/autostart/vmware-user.desktop
会自动启动,并负责完成在虚拟机里运行的相关必要配置。
然而如果你先启动至了 multi-user.target
,或者你的环境不太常规(比如用了多个显示器),那么你需要手动启用 vmtoolsd.service
服务,并且还需要让 Xorg 以根权限运行以加载相关驱动。
提示与技巧[编辑 | 编辑源代码]
通过 vmhgfs-fuse
共享目录[编辑 | 编辑源代码]
open-vm-tools
v.10.x 与 Linux 内核 4.x,同时需要 VMware Workstation / Fusion。在菜单中选择 Edit virtual machine settings > Options > Shared Folders > Always enabled,即可建立共享目录。
在客机里运行如下命令可以列出共享目录:
$ vmware-hgfsclient
然后以如下方式挂载:
# mkdir <shared folders root directory> # vmhgfs-fuse -o allow_other -o auto_unmount .host:/<shared_folder> <shared folders root directory>
如果碰到了如下报错:fusermount: option allow_other only allowed if 'user_allow_other' is set in /etc/fuse.conf
,需将 /etc/fuse.conf
中的这一行取消注释:
user_allow_other
欲了解 vmhgfs-fuse
的其他挂载参数,可以用 -h
参数调用:
# vmhgfs-fuse -h
cp
, mv
or cat
) result in an "Input/output error" when accessing the shared folder then setting the mount option max_write
can serve as a workaround (observed with open-vm-tools
version 11.1.0 and higher; see this bug report: https://github.com/vmware/open-vm-tools/issues/437)).fstab[编辑 | 编辑源代码]
每个共享目录的挂载都需要写如下的一行配置:
/etc/fstab
.host:/<shared_folder> <shared folders root directory> fuse.vmhgfs-fuse nofail,allow_other 0 0
然后创建并挂载目录:
# mkdir <shared folders root directory> # mount <shared folders root directory>
Systemd[编辑 | 编辑源代码]
创建如下 .service
文件:
/etc/systemd/system/<shared folders root directory>-<shared_folder>.service
[Unit] Description=Load VMware shared folders Requires=vmware-vmblock-fuse.service After=vmware-vmblock-fuse.service ConditionPathExists=.host:/<shared_folder> ConditionVirtualization=vmware [Service] Type=oneshot RemainAfterExit=yes ExecStart=/usr/bin/vmhgfs-fuse -o allow_other -o auto_unmount .host:/<shared_folder> <shared folders root directory> [Install] WantedBy=multi-user.target
如果客机里的 <shared folders root directory>
目录还不存在,你需要手动提前创建:
# mkdir -p <shared folders root directory>
然后启用 <shared folders root directory>-<shared_folder>.service
挂载目标。
删掉 <shared_folder> 的部分可以一次性挂载所有共享目录。
使用 vmhgfs 模块的旧式目录共享[编辑 | 编辑源代码]
在菜单中选择 Edit virtual machine settings > Options > Shared Folders > Always enabled,即可建立共享目录。
确保已加载 vmhgfs
驱动:
# modprobe vmhgfs
可以通过以下命令查看共享目录清单:
$ vmware-hgfsclient
然后可以通过如下命令挂载目录:
# mkdir /home/user1/shares # mount -n -t vmhgfs .host:/<shared_folder> /home/user1/shares
在启动时启用[编辑 | 编辑源代码]
按照如下编辑 mkinitcpio.conf
文件:
/etc/mkinitcpio.conf
... MODULES=(... vmhgfs) ...
fstab[编辑 | 编辑源代码]
每个共享目录的挂载都需要写如下的一行配置:
/etc/fstab
.host:/<shared_folder> /home/user1/shares vmhgfs defaults 0 0
然后创建并挂载目录:
# mkdir /home/user1/shares # mount /home/user1/shares
Systemd[编辑 | 编辑源代码]
共享目录需用到 vmhgfs
驱动。参考如下案例创建 .service
文件:
/etc/systemd/system/<shared folders root directory>-<shared_folder>.mount
[Unit] Description=Load VMware shared folders ConditionPathExists=.host:/<shared_folder> ConditionVirtualization=vmware [Mount] What=.host:/<shared_folder> Where=<shared folders root directory>/<shared_folder> Type=vmhgfs Options=defaults,noatime [Install] WantedBy=multi-user.target
/etc/systemd/system/<shared folders root directory>-<shared_folder>.automount
[Unit] Description=Load VMware shared folders ConditionPathExists=.host:/<shared_folder> ConditionVirtualization=vmware [Automount] Where=<shared folders root directory>/<shared_folder> [Install] WantedBy=multi-user.target
如果客户机内还没有 <shared folders root directory>
目录,你需要手动提前创建:
# mkdir -p <shared folders root directory>
然后启用 mnt-hgfs.automount
挂载目标。
删掉 <shared_folder> 的部分可以一次性挂载所有共享目录。
Prune mlocate DB[编辑 | 编辑源代码]
When using mlocate, it is pointless to index the shared directories in the locate DB
. Therefore, add the directories to PRUNEPATHS
in /etc/updatedb
.
3D 加速[编辑 | 编辑源代码]
如果在创建客户机时没有选择 3D 加速功能,可以勾选: 编辑虚拟机设置 > 硬件 > 显示器 > 加速 3D 图形。
OpenGL 与 GLSL 支持[编辑 | 编辑源代码]
用户可以自行更新实现 OpenGL 的 GLSL 内核模块,覆盖 Arch 自带的版本。
本文成文时,OpenGL 3.3 和 GLSL 3.30 都得到了支持。参阅 https://bbs.archlinux.org/viewtopic.php?id=202713 可以了解更多细节。
时间同步[编辑 | 编辑源代码]
为虚拟机配置时间同步很重要,因为虚拟机比物理机更容易出现时间波动现象。主要原因就在于 CPU 是被共用的。
有两种方案可以实现同步:与宿主机同步,或是通过外部服务器同步。
与宿主机同步时间[编辑 | 编辑源代码]
先确保 vmtoolsd.service
服务已启动,然后用如下命令启用时间同步功能:
# vmware-toolbox-cmd timesync enable
宿主系统休眠后,用如下的命令来使客机间同步时间:
# hwclock --hctosys --localtime
与外部服务器同步时间[编辑 | 编辑源代码]
参阅 NTP。
故障排除[编辑 | 编辑源代码]
客户机网络速度减慢[编辑 | 编辑源代码]
Arch Linux 和其它 Linux 客户机一样,当使用 NAT 模式的时候也许会碰到网络速度减慢的问题。为了解决这个问题,请在宿主机下把对应的客户机的网络模式切换为桥接模式,在必要时修改客户机网络的配置文件。有关配置的详细信息请参阅网络配置。如果在 Windows 宿主机下,使用正确的客户机网络配置仍然无法正确连接网络, 可使用管理员运行虚拟网络编辑器并点击左下方的还原默认设置按钮。
声音问题[编辑 | 编辑源代码]
如果虚拟机发出了恼人的巨响,那有可能是 PC 扬声器的原因。在客户机系统里禁用 PC 扬声器即可解决:
鼠标问题[编辑 | 编辑源代码]
虚拟机可能会出现下列鼠标问题:
- 自动获取/失去焦点的功能可能会在鼠标箭头移入窗口时失效
- 按键无响应
- 卡顿、延迟
- 在个别软件中点击无响应
- 箭头在移入/移出虚拟机时跳跃
- 箭头会跳跃到从虚拟机移出的位置
可以先尝试卸载 xf86-input-vmmouse包 包,xf86-input-vmmouse包 和 xf86-input-libinput包 应足以处理鼠标和键盘输入。
为解决鼠标箭头跳跃到从虚拟机移出的位置的问题,可以试试在 .vmx
配置文件里添加如下配置:
~/vmware/<Virtual Machine name>/<Virtual Machine name>.vmx
mouse.vusb.enable = "TRUE" mouse.vusb.useBasicMouse = "FALSE"
VMware 还会为游戏做自动的鼠标优化。如果这一优化产生了问题,可以在这里将其禁用:Edit > Preferences > Input > Optimize mouse for games: Never
再者,尝试在 60-libinput.conf
里禁用 catchall
事件也可能有用:
/usr/share/X11/xorg.conf.d/60-libinput.conf
#Section "InputClass" # Identifier "libinput pointer catchall" # MatchIsPointer "on" # MatchDevicePath "/dev/input/event*" # Driver "libinput" #EndSection
启动故障[编辑 | 编辑源代码]
启动速度慢[编辑 | 编辑源代码]
如果 VMware 开启了内存热扩容功能,那么有可能会出现如下错误:
- add_memory failed
- acpi_memory_enable_device() error
可以在 .vmx
配置文件里写入 mem.hotadd = "FALSE"
来禁用内存热扩容功能。
~/vmware/<Virtual Machine name>/<Virtual Machine name>.vmx
mem.hotadd = "FALSE"
关机/重启时卡住不动[编辑 | 编辑源代码]
试着降低 vmtoolsd 服务的超时阈值(默认是 90 秒):
/etc/systemd/system/vmtoolsd.service.d/timeout.conf
[Service] TimeoutStopSec=1
窗口分辨率自动适配[编辑 | 编辑源代码]
自动适配的意思是,当你在宿主机里缩放 VMware 窗口之后,Arch 作为客户机系统,应该自动根据主系统窗口的新尺寸来调整分辨率。
方案 1[编辑 | 编辑源代码]
确保在设置里开启了自动适配。
VMware Worksation 的这一设置位于:View -> Autosize -> Autofit Guest
方案 2[编辑 | 编辑源代码]
出于某些原因,分辨率自动适配的功能依赖于 gtkmm包 和 gtk2包 软件包,所以需确保客户机上已安装这两个包。如果客户机没有安装 X windows 或使用的桌面环境不依赖于 GTK(例如 KDE),那么你需要手动安装这两个包。
方案 3[编辑 | 编辑源代码]
可能需要向 mkinitcpio.conf 添加相关模块:
/etc/mkinitcpio.conf
MODULES=(vsock vmw_vsock_vmci_transport vmw_balloon vmw_vmci vmwgfx)
不要忘了重新生成 initramfs。
方案 4[编辑 | 编辑源代码]
启用 vmtoolsd.service
。
如果不起效,需确保 vmtoolsd.service
已正常重启。
方案 5[编辑 | 编辑源代码]
If GNOME is running on Wayland, install xf86-video-vmware包 (FS#57473).
See [2].
方案 6[编辑 | 编辑源代码]
Make sure that Stretch Mode is disabled. Follow VM > Settings > Display > Display Scaling and untick the option Stretch mode.
拖拽与复制粘贴[编辑 | 编辑源代码]
为了确保拖拽与复制粘贴功能正常工作,需要安装 open-vm-tools包 和 gtkmm3包 这两个包。
使 vmware-user
在 X11 之后运行:
- 确保
/etc/xdg/autostart/vmware-user.desktop
存在,如果文件不存在,请运行:
# cp /etc/vmware-tools/vmware-user.desktop /etc/xdg/autostart/vmware-user.desktop
或
- 添加
vmware-user
到 Xinitrc
Wayland 暂不支持复制粘贴功能,但使用 Xwayland 的应用可以正常使用该功能。
在 VMware Workstation 11 版上运行共享 VM[编辑 | 编辑源代码]
Workstation 11 有个 bug:当 Arch 客户机以共享 VM 模式运行,且启动了 vmtoolsd 服务时,vmware-hostd 会崩溃。open-vm-tools 有个补丁来绕过这一问题。
Virtual Network Editor Wayland[编辑 | 编辑源代码]
Running GUI applications as root -- some of the following is copied from
- When running VMWare workstation on a wayland host the Virtual Network Editor will not launch under Wayland this because
Trying to run a graphical application as root via su, sudo or pkexec in a Wayland session (e.g. GParted or Gedit), will fail with an error similar to this:
$ sudo vmware-netcfg No protocol specified Unable to init server: Could not connect: Connection refused (gedit:2349): Gtk-WARNING **: cannot open display: :0
This is a security feature of Wayland they reason GUI applications should not be run as root. This can be achieved using the following in the terminal
Using xhost[编辑 | 编辑源代码]
A more versatile —though much less secure— workaround is to use xhost to temporarily allow the root user to access the local user's X session[3]. To do so, execute the following command as the current (unprivileged) user:
$ xhost si:localuser:root
To remove this access after the application has been closed:
$ xhost -si:localuser:root
Using sudo -E[编辑 | 编辑源代码]
Launch vmware-netcfg with:
$ sudo -E vmware-netcfg