Amendments to PR #11
diff --git a/documentation.md b/documentation.md
index fcc6d82..15b4baa 100644
--- a/documentation.md
+++ b/documentation.md
@@ -1,8 +1,8 @@
 ---
 layout: normal
 title: Documentation
-+children:
-+- { path: documentation/install-on-server.md }
+children:
+- { path: documentation/install-on-server.md }
 ---
 
 ## Official User Manual
diff --git a/documentation/increase-entropy.md b/documentation/increase-entropy.md
index 374df20..e97b02d 100644
--- a/documentation/increase-entropy.md
+++ b/documentation/increase-entropy.md
@@ -25,6 +25,7 @@
 You can also just mv /dev/random then create it again linked to /dev/urandom, by issuing the following commands:
 
 {% highlight bash %}
-sudo mv /dev/random /dev/random-real", "sudo ln -s /dev/urandom /dev/random"
+sudo mv /dev/random /dev/random-real
+sudo ln -s /dev/urandom /dev/random
 {% endhighlight %}
 
diff --git a/documentation/install-on-server.md b/documentation/install-on-server.md
index 2c723b1..7a1a82f 100644
--- a/documentation/install-on-server.md
+++ b/documentation/install-on-server.md
@@ -1,6 +1,6 @@
 ---
 layout: normal
-title: Install Apache Brooklyn® on a server
+title: Installing on a server
 ---
 Here we present two *alternatives* to install Brooklyn:
 
@@ -82,11 +82,11 @@
 
 The `brooklyn.properties` is the main configuration file for deployment locations. Contains the connection details and credentials for all public or on-premises cloud providers, as well as controlling some application startup and security options.
 
-Create a `.brooklyn` folder in your home directory and download the template [brooklyn.properties]({{ site.url }}/brooklyn.properties) to that folder.
+Create a `.brooklyn` folder in your home directory and download the template [brooklyn.properties](../quickstart/brooklyn.properties) to that folder.
 
 {% highlight bash %}
 $ mkdir -p ~/.brooklyn
-$ curl -o ~/.brooklyn/brooklyn.properties http://brooklyncentral.github.io/use/guide/quickstart/brooklyn.properties
+$ wget -O ~/.brooklyn/brooklyn.properties {{site.url}}/quickstart/brooklyn.properties
 $ chmod 600 ~/.brooklyn/brooklyn.properties
 {% endhighlight %}
 
@@ -97,8 +97,7 @@
 `~/.brooklyn/catalog.xml`. 
 
 {% highlight bash %}
-$ curl -o ~/.brooklyn/catalog.xml \
-http://brooklyncentral.github.io/use/guide/quickstart/catalog.xml
+$ wget -O ~/.brooklyn/catalog.xml {{site.url}}/quickstart/catalog.xml
 {% endhighlight %}
 
 The `catalog.xml` is the application blueprint catalog. The above example file contains some blueprints which will be automatically downloaded from the web if you run them.
diff --git a/quickstart/policies-and-catalogs.md b/quickstart/policies-and-catalogs.md
index bfeb231..7e6723f 100644
--- a/quickstart/policies-and-catalogs.md
+++ b/quickstart/policies-and-catalogs.md
@@ -1,5 +1,5 @@
 ---
-title: Policies and Catalogs
+title: Getting Started - Policies and Catalogs
 layout: normal
 ---