How to install Windows10 VM on FreeBSD 13.0 using bhyve and ZFS.
1. Preparing the Host First, load the bhyve kernel module: # kldload vmm Then, create a tap interface for the network device in the virtual machine to attach to. In order to for the network device to participate in the network, also create a bridge interface containing the tap interface and the physical interface as members. In this example, the physical interface is em0: # ifconfig tap0 create # sysctl net.link.tap.up_on_open=1 net.link.tap.up_on_open: 0 -> 1 # ifconfig bridge0 create # ifconfig bridge0 addm em0 addm tap0 # ifconfig bridge0 up 2. Using ZFS with bhyve Guests A ZFS volume can be created by: # zfs create -V88G -o volmode=dev zroot/win10disk0 If you want to destroy ZFS file. # zfs list For example the ZFS file you want to destroy is win10disk0: # zfs destroy zroot/win10disk0 3. Preparing for the Installation Download an installation image of Windows10 to install: https://www.microsoft.com/en-us/software-download/windows10ISO Instal...