Joe Atkins

Results 6 comments of Joe Atkins

I was running into this same issue. I was unable to install vagrant-libvirt from source, but I have the newest released version (0.7.0) installed and am able to see the...

@electrofelix The networking issue, which caused me to move the discussion to the other ticket, was actually masking another issue. If I use: ```ruby libvirt.driver = 'qemu' libvirt.machine_type = 'pc'...

Due to a recent change in libvirt 7.10.0, providing `-machine accel=hvf` no longer works: https://gitlab.com/libvirt/libvirt/-/issues/147#note_755379369

I was able to create a Vagrantfile that enables HVF and adds user-mode networking: ```ruby Vagrant.configure('2') do |config| config.vm.synced_folder '.', '/vagrant', disabled: true config.vm.box = 'generic/ubuntu2004' config.vm.provider :libvirt do |libvirt|...

@electrofelix I took inspiration from @kenji21 for adding the user-mode networking. It is also very similar to how Linux-on-Mac handles networking with Qemu. https://github.com/lima-vm/lima/blob/f42606966930d7675690990349dea0428dafbe7f/pkg/qemu/qemu.go#L271-L310 As far as port fowarding, it...

I am running into a mix of this and #141. I need to add `class="form-control"` to every single input, thanks Bootstrap. I could use `widget-class="form-control"`, but it would be redundant...