diff --git a/docs/getting-started/setup/ubuntu.md b/docs/getting-started/setup/ubuntu.md index a10c9d6fc..2ec6ccb23 100644 --- a/docs/getting-started/setup/ubuntu.md +++ b/docs/getting-started/setup/ubuntu.md @@ -4,4 +4,44 @@ title: Getting Started - Setting up Ubuntu --- # Ubuntu -Coming soon. \ No newline at end of file +## Installing Ruby and RubyGems + +The easiest way to install Ruby and RubyGems is via Ubuntu's built +in package manager: + +{% highlight bash %} +$ sudo apt-get install +{% endhighlight %} + +You'll also want to verify that RubyGems is fully updated, since the +packages can often get out of date: + +{% highlight bash %} +$ sudo gem update --system +{% endhighlight %} + +## 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 %} + +
+

Vagrantfile?

+

+ 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. +

+
\ No newline at end of file diff --git a/index.md b/index.md index 4ae181b54..3c7c89409 100644 --- a/index.md +++ b/index.md @@ -12,8 +12,7 @@ getting started guide on "[Why Vagrant?](/docs/getting-started/why.html)" Are you ready to revolutionize the way you work? Check out the [getting started guide](/docs/getting-started/index.html), the -[getting started video](http://vimeo.com/9976342), or if you're using -Windows see [here](/docs/getting-started/windows.html). +[getting started video](http://vimeo.com/9976342). ## Your First Vagrant Virtual Environment