You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49 lines
1.7 KiB

#!/bin/bash
set -x
sudo kvm \
-serial telnet:localhost:2002,server,nowait \
-monitor telnet:127.0.0.1:2003,server,nowait \
-vga none \
-runas vbullseye \
-daemonize \
-display none \
-nic tap,model=virtio,mac=52:54:00:12:34:58 \
-machine pseries,accel=kvm,kvm-type=HV \
-smp 4 \
-m 4096 \
-name vbullseye \
-drive format=qcow2,cache=writeback,discard=on,file=/srv/kvm/vbullseye/boot.img \
-drive format=qcow2,cache=writeback,discard=on,file=/srv/kvm/vbullseye/swap.img \
-drive format=qcow2,cache=writeback,discard=on,file=/srv/kvm/vbullseye/root.img \
-drive format=qcow2,cache=writeback,discard=on,file=/srv/kvm/vbullseye/home.img
exit
-nographic \
-daemonize \
-display none \
-daemonize \
-runas jebba \
-cdrom /srv/devel/distros/debian/debian-bullseye-mini.iso \
-boot d \
-cdrom /srv/devel/distros/debian/debian-bullseye-mini.iso \
# IMAGE
# qemu-img create -f qcow2 /srv/KVM/bullseye/boot.img 256M
# qemu-img create -f qcow2 /srv/KVM/bullseye/swap.img 128M
# qemu-img create -f qcow2 /srv/KVM/bullseye/root.img 2G
# qemu-img create -f qcow2 /srv/KVM/bullseye/home.img 1G
# Resize
# qemu-img resize foo.img +10G
# qemu-img resize /srv/KVM/bullseye/root.img +10G
# to use the kvm_pr.ko kernel module.
# qemu-system-ppc64 -M pseries,accel=kvm,kvm-type=PR
# to use kvm_hv.ko instead.
# qemu-system-ppc64 -M pseries,accel=kvm,kvm-type=HV
#qemu-system-ppc64le \
# -net user,hostfwd=tcp:192.168.110.22:80-:80,hostfwd=tcp:192.168.110.22:443-:443,hostfwd=tcp:192.168.110.22:28208-:22 \