17 lines
726 B
Bash
Executable File
17 lines
726 B
Bash
Executable File
#!/bin/sh
|
|
# Purpose: Simple script to start my Debian VM using bhyve on FreeBSD
|
|
# Original author: Vivek Gite (https://www.cyberciti.biz) under GPL v2.x+
|
|
# Modifications made by: hyperreal (https://hyperreal.coffee) under GPL v2.x+
|
|
|
|
if ! kldstat | grep -w vmm.ko; then
|
|
kldload -v vmm
|
|
fi
|
|
|
|
if ! kldstat | grep -w nmdm.ko; then
|
|
kldload -v nmdm
|
|
fi
|
|
|
|
if ! bhyve -c 4 -m 8G -w -H -s 0,hostbridge -s 4,virtio-blk,/dev/zvol/zroot/debianvm -s 5,virtio-net,tap0 -s 29,fbuf,tcp=0.0.0.0:5900,w=1024,h=768 -s 30,xhci,tablet -s 31,lpc -l com1,stdio -l bootrom,/usr/local/share/uefi-firmware/BHYVE_UEFI.fd debianvm 2>/tmp/start_debian_vm_error; then
|
|
neomutt -s "[nas] start_debian_vm error" jas@nas </tmp/start_debian_vm_error
|
|
fi
|