Skip to content

Instantly share code, notes, and snippets.

@Maurifc
Created January 17, 2022 15:17
Show Gist options
  • Save Maurifc/e8010eacf70102ffa0260f650cce59ca to your computer and use it in GitHub Desktop.
Save Maurifc/e8010eacf70102ffa0260f650cce59ca to your computer and use it in GitHub Desktop.
Basic Vagrantfile - Ubuntu Bionic
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "private_network", ip: "10.10.10.50"
config.vm.provider "virtualbox" do |vb|
vb.name = "linux-ubuntu"
vb.memory = "512" # Change the RAM amount here
vb.cpus = 2 # Change de CPU vCore amount here
vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment