am 816f55f0: Merge "Document command to create MacOS disk image"

* commit '816f55f078d5a1eb9e929a8d74384d5daecc7d6e':
  Document command to create MacOS disk image
diff --git a/src/source/initializing.md b/src/source/initializing.md
index 410e20a..b896c57 100644
--- a/src/source/initializing.md
+++ b/src/source/initializing.md
@@ -109,7 +109,16 @@
 
 ## Creating a case sensitive disk image ##
 
-If you want to avoid partitioning/formatting your hard drive, you can use a case-sensitive disk image instead. To create the image, launch Disk Utility and select "New Image".  A size of 12 GB should be sufficient to complete the build.  Be sure to select "case sensitive, journaled" as the volume format.
+If you want to avoid partitioning/formatting your hard drive, you can use
+a case-sensitive disk image instead. To create the image, launch Disk
+Utility and select "New Image".  A size of 12GB is the minimum to
+complete the build, larger numbers are more future-proof. Using sparse images
+saves space while allowing to grow later as the need arises. Be sure to select
+"case sensitive, journaled" as the volume format.
+
+You can also create it from a shell with the following command:
+
+    # hdiutil create -type SPARSE -fs 'Case-sensitive Journaled HFS+' -size 40g ~/android.dmg
 
 This will create a .dmg file which, once mounted, acts as a drive with the required formatting for Android development. For a disk image named "android.dmg" stored in your home directory, you can add the following to your `~/.bash_profile` to mount the image when you execute "mountAndroid":