1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
# Defines the virtualization tool that should be used by kw. Current, we only
# support QEMU
virtualizer=qemu-system-x86_64
# Defines the kw mount point, this directory is used by libguestfs during the
# mount/umount operation of a VM
mount_point=/home/USERKW/p/mount
# Sets basic QEMU options
qemu_hw_options=-enable-kvm -daemonize -smp 2 -m 1024
# Defines the network configuration
qemu_net_options=-nic user,hostfwd=tcp::2222-:22,smb=/home/USERKW
# Specify the VM image path
qemu_path_image=/home/USERKW/p/virty.qcow2
|