Skip to content

Instantly share code, notes, and snippets.

@jharley
Created January 2, 2021 21:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jharley/9cd3d3cdcf4d916f455e6c4ee9db2abd to your computer and use it in GitHub Desktop.
Save jharley/9cd3d3cdcf4d916f455e6c4ee9db2abd to your computer and use it in GitHub Desktop.
Functional focal64 Vagrantfile
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/focal64"
config.vm.network "private_network", type: "dhcp"
config.vm.provider "virtualbox" do |vb|
vb.memory = "1024"
vb.customize ["modifyvm", :id, "--uart1", "0x3F8", "4"]
vb.customize ["modifyvm", :id, "--uartmode1", "file", File::NULL]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment