Ubuntu 20.04 on QEmu working

This commit is contained in:
Greg Hellings
2022-05-04 09:00:17 -05:00
parent 950500c9f1
commit ff59effbb1
43 changed files with 757 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
Vagrant.configure('2') do |c|
c.vm.synced_folder ".", "/home/vagrant/vagrant", type: "rsync"
# Set some basic overrides
c.vm.provider :libvirt do |v, override|
v.driver = 'kvm'
v.connect_via_ssh = false
v.username = 'root'
end
c.vm.provider :virtualbox do |v|
v.gui = false
end
c.vm.provider :vmware_fusion do |v|
v.gui = false
end
end