Skip to content

Instantly share code, notes, and snippets.

@obscurerichard
Created June 20, 2023 00:17
Show Gist options
  • Save obscurerichard/e956d4f3fde2ac6885cb2dcbb1e69163 to your computer and use it in GitHub Desktop.
Save obscurerichard/e956d4f3fde2ac6885cb2dcbb1e69163 to your computer and use it in GitHub Desktop.
Vagrantfile for Kali linux using Virtualbox
# Kali Vagrantfile
# Copyright (C) 2023 Richard Bullington-McGuire (@obscurerichard)
# MIT-0 Licensed - https://github.com/aws/mit-0
Vagrant.configure("2") do |config|
config.vm.box = "kalilinux/rolling"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "4096"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment