http://mabufs.i2p/blog/xen-freebsd
After that we need to create a virtual machine, let's start by creating a virtual disk truncate -s 50G windows.img Then create a virtual machine configuration file windows.cfg DomU, which looks like this: type = "hvm" name = "win10" memory = 4096 vcpus = 4 vif = ['bridge=bridge0'] disk = [ '/Xen/windows.img,raw,xvda,rw', '/Downloads/W10.iso,raw,hdc,cdrom' ] boot = "c" # Boot to hard disk image #boot = "d" # Boot to ISO image vnc = 1 To load this DomU we execute: xl create windows.cfg and...