Vagrant Ubuntu 16.04

Contains information related to the Vagrant

Completed Medium
Start
February 25, 2018
End
February 25, 2018
Period
1Days
Last Updated
February 25, 2018
Tags

Vagrant Ubuntu 16.04

vagrant init bento/ubuntu-16.04
vi Vagrantfile
  • Uncomment the following
config.vm.network "private_network", ip: "192.168.33.10"
config.vm.provider "virtualbox" do |vb|
vb.gui = true
vb.memory = "1024"
end
  • Execute the following command
vagrant up
  • Log in with vagrant/vagrant

  • Execute an update

sudo apt-get update
sudo apt-get upgrade

For updating GRUB, select install~, and for the device, align the cursor to “/dev/sda”, press the ‘Space’ key, and when ‘*’ appears, press the ‘Enter’ key

  • To enable operations on the desktop
sudo apt-get install ubuntu-desktop
startx