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:

  • base
  • linux61
  • dhcpcd
  • grub
  • mkinitcpio
  • vi
  • sudo
  • openssh
  • cloud-guest-utils
  • lsb-release

Changes from 1.0.1:

  • Built using packer
  • Auto disk resizing

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
1 provider for this version.
  • libvirt
    unknown Hosted by Vagrant Cloud (870 MB)

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:

  • base
  • linux61
  • dhcpcd
  • grub
  • mkinitcpio
  • vi
  • sudo
  • openssh
  • cloud-guest-utils
  • lsb-release

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
1 provider for this version.
  • libvirt
    unknown Hosted by Vagrant Cloud (847 MB)