Struan Bartlett

Results 74 comments of Struan Bartlett

Another idea: with `CONSOLE_MONITOR="1"` in `/opt/runcvm/scripts/runcvm-ctr-qemu`, try removing `--env=RUNCVM_BIOS_DEBUG=1` and adding `--env=RUNCVM_KERNEL_APPEND='earlyprintk=serial'`, i.e. running: ``` docker run --rm -it --runtime=runcvm --env=RUNCVM_KERNEL_DEBUG=1 --env=RUNCVM_RUNTIME_DEBUG=1 --env=RUNCVM_BREAK=preqemu --env=RUNCVM_KERNEL_APPEND='earlyprintk=serial' ubuntu:latest ``` This might print some...

@SmylerMC Thanks so much for persisting with this. At least it seems we're getting somewhere! Please would you try removing the `script` and `downscript` options from `-netdev`. That will tell...

You could certainly change `virtio-net-pci` to `e1000` in the `-device` line. I've tested RunCVM/QEMU boots with this change (although as the RunCVM kernel initrds do not contain the e1000 module,...

Hi @SmylerMC have you had a chance to look at this again? I'm very keen to get to the bottom of it (although at the same time I still haven't...

We had a working prototype of this, which needs to be refined before it can be committed to `main`.

Worth noting that the latest RUNCVM_DISKS environment variable behaviour, which mounts a file-backed virtual disk populated with any pre-existing image contents at almost any desired filesystem location (except, currently, `/`)...

That's an interesting use-case and it should be a viable one. Running dockerd inside RunCVM is supported. I've looked over the Dockerfile and on first impressions it looks fine. What...

A VM needs its memory allowance to be specified. If you don't specify with `-m` the default is indeed 512Mb which may be too small for running all but the...

That's a great question but one I can't answer right now. If you want to run two RunCVM VMs, I would (for now) recommend finding out the minimum memory requirement...

Thanks for this. These commands do (now) work, and it turns out at least part of my problem was that I was trying to build inside a repo directory that...