diff --git a/docs/getting-started/setup/ubuntu.md b/docs/getting-started/setup/ubuntu.md index 2ec6ccb23..686a50b7c 100644 --- a/docs/getting-started/setup/ubuntu.md +++ b/docs/getting-started/setup/ubuntu.md @@ -23,25 +23,7 @@ $ sudo gem update --system ## VirtualBox OSE By default, VirtualBox installed via Ubuntu's package repositories -will be "VirtualBox Open Source Edition (OSE)." While Vagrant will work -fine with this edition (as long as its version 3.1 or higher), there -are some additional configuration steps necessary within the Vagrantfile. -VirtualBox OSE doesn't support headless VMs, so you must always boot -into a GUI: - -{% highlight ruby %} -Vagrant::Config.run do |config| - # Add this anywhere in your Vagrantfile - config.vm.boot_mode = "gui" -end -{% endhighlight %} - -
- Not sure what a Vagrantfile is? Don't worry! The getting started guide - will get to it. If you're not at that point in the guide yet, just put - this page in a background tab and remember to come back and check on it - when you cover Vagrantfiles. -
-