1. vagrant init
2. Vagrantfile編集
config.vm.provider :virtualbox do |vb|
# Don't boot with headless mode
vb.gui = true # ココを編集する
# Use VBoxManage to customize the VM. For example to change memory:
vb.customize ["modifyvm", :id, "--memory", "1024"]
end
3. vagrant up

以上。