Created
June 20, 2023 00:17
-
-
Save obscurerichard/e956d4f3fde2ac6885cb2dcbb1e69163 to your computer and use it in GitHub Desktop.
Vagrantfile for Kali linux using Virtualbox
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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