Compare commits

..

3 commits

3 changed files with 18 additions and 2 deletions

View file

@ -1,5 +1,5 @@
#!/usr/bin/env bash
# version=0.5.0
# version=0.6.0
# Function to re-exec the script as another user via sudo (only if needed)
exec_as() {
@ -66,6 +66,7 @@ public_start() {
QEMUSH_NAME="$1"
set -- "$@" \
-name "$QEMUSH_NAME" \
-monitor "unix:$(pathof socket),server,nowait" \
-daemonize
if ! "$@"; then

11
qemu/launchers/9p Executable file
View file

@ -0,0 +1,11 @@
#!/usr/bin/env sh
base=$(echo "$QEMUSH_BASE" | cut -d , -f 1)
QEMUSH_BASE=$(echo "$QEMUSH_BASE" | sed "s/^${base}//" | sed 's/^,//')
set -- "$base" \
-fsdev local,security_model=passthrough,id=fsdev0,path="${HOME}/shared/${QEMUSH_NAME}" \
-device virtio-9p-pci,id=fs0,fsdev=fsdev0,mount_tag=shared \
"$@"
set -x
exec "$@"

View file

@ -1,6 +1,10 @@
#!/usr/bin/env sh
set -x
# What processor architecture to use
arch=$QEMUSH_ARCH
[ -z "$arch" ] && arch=$(uname -m)
# How many CPU cores to use
nproc=$QEMUSH_NPROC
[ -z "$nproc" ] && nproc=$(($(nproc) / 2))
@ -10,7 +14,7 @@ ram=$QEMUSH_RAM
[ -z "$ram" ] && ram=$(($(free | grep '^Mem:\s' | awk '{ print $NF }') / 2))K
# Set the arguments
set -- qemu-system-x86_64 \
set -- "qemu-system-${arch}" \
-enable-kvm \
-M q35 \
-cpu host -smp "$nproc" \