How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "adnuntius/manjaro"
end
vagrant init adnuntius/manjaro
vagrant up
This version was created over 1 year ago.
https://github.com/jason-adnuntius/vagrant/tree/master/manjaro
Manjaro 22 base box, that has the following packages:
Changes from 1.0.1:
The disk size is only 2GB, but you can specify a Vagrantfile that specifies a larger disk:
Vagrant.configure("2") do |config|
config.vm.box = "adnuntius/manjaro"
config.vm.provider :libvirt do |libvirt|
libvirt.cpus = 2
libvirt.memory = 4096
libvirt.machine_virtual_size = 100
end
end
This version was created over 1 year ago.
https://github.com/jason-adnuntius/vagrant/tree/master/manjaro
Manjaro 22 base box, that has the following packages:
The disk size is only 2GB, but you can specify a Vagrantfile that specifies a larger disk:
Vagrant.configure("2") do |config|
config.vm.box = "adnuntius/manjaro"
config.vm.provider :libvirt do |libvirt|
libvirt.memory = 4096
libvirt.machine_virtual_size = 100
end
config.vm.provision :shell do |s|
s.inline = <<-SHELL
growpart /dev/vda 1
resize2fs /dev/vda1 2>&1
SHELL
end
end