Compare commits
No commits in common. "0a7eea59e71af13c93b49dd6230fa1463fb74efa" and "ba6e9cd6e7757c3e8770f793abbed91b832572f8" have entirely different histories.
0a7eea59e7
...
ba6e9cd6e7
4 changed files with 5 additions and 101 deletions
99
bin/qemush
99
bin/qemush
|
@ -1,99 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
exec_as() {
|
|
||||||
local user="$1"
|
|
||||||
shift
|
|
||||||
|
|
||||||
if [ "$(whoami)" != "$user" ]; then
|
|
||||||
exec sudo -u "$user" "$0" "$@"
|
|
||||||
else
|
|
||||||
cd
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
exec_as qemu "$@" || exit
|
|
||||||
PATH="./bin:${PATH}"
|
|
||||||
|
|
||||||
perror() {
|
|
||||||
>&2 printf '\033[1;31mERROR:\033[0m \033[1m%s\033[0m\n' "$*"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_help() {
|
|
||||||
local name
|
|
||||||
name="$(basename "$0")"
|
|
||||||
cat << EOF
|
|
||||||
${name}: usage:
|
|
||||||
${name} active - (default behaviour) list active VMs
|
|
||||||
${name} start <VM name> - start a VM
|
|
||||||
${name} watch <VM name> - attach VM screen session
|
|
||||||
${name} list - list available VMs
|
|
||||||
${name} add <VM name> <template> - add launch script based on template
|
|
||||||
${name} rm <VM name> - delete launch script
|
|
||||||
${name} diskls - list available disk images
|
|
||||||
${name} diskadd <disk name> <size> - create a disk image
|
|
||||||
${name} diskrm <disk name> - delete disk image
|
|
||||||
${name} help - show this help
|
|
||||||
EOF
|
|
||||||
}
|
|
||||||
|
|
||||||
error_usage() {
|
|
||||||
perror "Invalid usage"
|
|
||||||
>&2 public_help
|
|
||||||
return 1
|
|
||||||
}
|
|
||||||
|
|
||||||
public_start() {
|
|
||||||
local vm_name="$1"
|
|
||||||
shift
|
|
||||||
|
|
||||||
screen -d -m -S "$vm_name" "$vm_name" "$@"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_watch() {
|
|
||||||
screen -dr "$1"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_active() {
|
|
||||||
screen -ls
|
|
||||||
}
|
|
||||||
|
|
||||||
public_list() {
|
|
||||||
echo "Available machines:"
|
|
||||||
ls --color=auto bin
|
|
||||||
}
|
|
||||||
|
|
||||||
diskpath() {
|
|
||||||
printf 'images/%s.qcow2' "$1"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_diskadd() {
|
|
||||||
qemu-img create -f qcow2 "$(diskpath "$1")" "$2"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_diskrm() {
|
|
||||||
rm -vi -- "$(diskpath "$1")"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_diskls() {
|
|
||||||
echo "Available disks:"
|
|
||||||
ls --color=auto images
|
|
||||||
}
|
|
||||||
|
|
||||||
public_add() {
|
|
||||||
ln -vs "$2" "bin/${1}"
|
|
||||||
}
|
|
||||||
|
|
||||||
public_rm() {
|
|
||||||
unlink "bin/${1}"
|
|
||||||
}
|
|
||||||
|
|
||||||
function="$1"
|
|
||||||
shift
|
|
||||||
|
|
||||||
if [ -z "$function" ]; then
|
|
||||||
public_active
|
|
||||||
elif declare -F | cut -d \ -f 3- | grep '^public_' | sed 's/^public_//' | grep -q "^${function}$"; then
|
|
||||||
"public_${function}" "$@"
|
|
||||||
else
|
|
||||||
error_usage
|
|
||||||
fi
|
|
1
bin/windows10
Symbolic link
1
bin/windows10
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../share/qemu/scripts/windows10
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -ex
|
||||||
name="$(basename "$0")"
|
name="$(basename "$0")"
|
||||||
qemu-system-x86_64 \
|
cd "$(dirname "$(readlink -f "$0")")/.."
|
||||||
|
exec screen -S "QEMU : ${name}" -d -m qemu-system-x86_64 \
|
||||||
-monitor stdio -enable-kvm \
|
-monitor stdio -enable-kvm \
|
||||||
-cpu host -smp "$(nproc)" \
|
-cpu host -smp "$(nproc)" \
|
||||||
-m 4G \
|
-m 4G \
|
|
@ -1,6 +1,7 @@
|
||||||
#!/bin/sh -ex
|
#!/bin/sh -ex
|
||||||
name="$(basename "$0")"
|
name="$(basename "$0")"
|
||||||
qemu-system-x86_64 \
|
cd "$(dirname "$(readlink -f "$0")")/.."
|
||||||
|
exec screen -S "QEMU : ${name}" -d -m qemu-system-x86_64 \
|
||||||
-monitor stdio -enable-kvm \
|
-monitor stdio -enable-kvm \
|
||||||
-bios /usr/share/edk2/x64/OVMF_CODE.fd \
|
-bios /usr/share/edk2/x64/OVMF_CODE.fd \
|
||||||
-usb -device usb-ehci,id=ehci -device usb-host,bus=ehci.0,vendorid=1452 \
|
-usb -device usb-ehci,id=ehci -device usb-host,bus=ehci.0,vendorid=1452 \
|
Loading…
Reference in a new issue