Ciaran Courtney

Results 25 comments of Ciaran Courtney

If you don't need the DNS feature of dnsmasq (i.e. just using DHCP) you can set `port=0` in dnsmasq.conf to disable it.

Since my opening comment I've learned two additional data points: 1. Vagrant is planning on migrating to golang for v3.0 and they've already embedded a prototype binary along with the...

Thanks @ppggff I tested 0.3.1 and got further, qemu is running in background but it looks like `getpgid()` is not implemented on Windows. ``` 2: from C:/Users/admin/.vagrant.d/gems/2.7.6/gems/vagrant-qemu-0.3.1/lib/vagrant-qemu/driver.rb:27:in `get_current_state' 1: from...

Yes my VM will boot in 0.3.2, it can set the hostname and ssh works, but with some caveats: 1. Needed to set cpu as `qemu64` since default 'host' raised...

Heres the snippet of config I'm using for this plugin: ```ruby config.vm.provider "qemu" do |qe,override| qe.arch = "x86_64" qe.machine = "type=q35,accel=whpx" qe.smp = "1" qe.memory = "1G" # default 'host'...