From a55d3307cd2d80bd92f6093d580681bed2f2359c Mon Sep 17 00:00:00 2001 From: fanta Date: Wed, 20 Sep 2023 18:09:14 +0200 Subject: [PATCH] port 3000 grafana test --- q.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/q.py b/q.py index ba0b975..31ebca8 100755 --- a/q.py +++ b/q.py @@ -73,7 +73,7 @@ def runVms(): for i in range(len(qcowFiles)): print("["+str(i)+"] - "+qcowFiles[i]) vmRun=input("\nMachine: ") - os.system("qemu-system-x86_64 -machine type=q35,accel=kvm -enable-kvm -device virtio-net-pci,netdev=net0 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::3000-:3000,hostfwd=tcp::80-:80,hostfwd=tcp::443-:443,hostfwd=tcp::8080-:8080 -smp $(nproc) --boot c -nographic -monitor telnet::45454,server,nowait -serial mon:stdio -m "+str(vmMemory)+" -hda "+dirVmsImgs+"/"+qcowFiles[int(vmRun)]) + os.system("qemu-system-x86_64 -machine type=q35,accel=kvm -enable-kvm -device virtio-net-pci,netdev=net0 -netdev user,id=net0,hostfwd=tcp::2222-:22,hostfwd=tcp::3000-:3000 -smp $(nproc) --boot c -nographic -monitor telnet::45454,server,nowait -serial mon:stdio -m "+str(vmMemory)+" -hda "+dirVmsImgs+"/"+qcowFiles[int(vmRun)]) choice() def delVms():