summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorVishvananda Ishaya <vishvananda@gmail.com>2010-06-30 15:07:52 -0500
committerVishvananda Ishaya <vishvananda@gmail.com>2010-06-30 15:07:52 -0500
commitea9b913ccceda5944c881f3ce9cadde39b0e0344 (patch)
treebc672fe1dadef096a104373115b992c30e421bcb /docs
parent183d86aae30c9f9ab452153acdc32e0f24847574 (diff)
downloadnova-ea9b913ccceda5944c881f3ce9cadde39b0e0344.tar.gz
nova-ea9b913ccceda5944c881f3ce9cadde39b0e0344.tar.xz
nova-ea9b913ccceda5944c881f3ce9cadde39b0e0344.zip
getting started update
Diffstat (limited to 'docs')
-rw-r--r--docs/getting.started.rst6
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/getting.started.rst b/docs/getting.started.rst
index 37e6f5a90..55a73dd00 100644
--- a/docs/getting.started.rst
+++ b/docs/getting.started.rst
@@ -43,7 +43,7 @@ Installation
::
# system libraries and tools
- apt-get install -y aoetools vlan
+ apt-get install -y aoetools vlan curl
modprobe aoe
# python libraries
@@ -62,6 +62,7 @@ Installation
# ON THE COMPUTE NODE:
apt-get install -y python-libvirt
apt-get install -y kpartx kvm libvirt-bin
+ modprobe kvm
# optional packages
apt-get install -y euca2ools
@@ -92,7 +93,7 @@ ON CLOUD CONTROLLER
location ~ /_images/.+ {
root NOVA_PATH/images;
- rewrite ^/_images/(.*)\$ /\$1 break;
+ rewrite ^/_images/(.*)$ /$1 break;
}
location / {
@@ -109,6 +110,7 @@ ON VOLUME NODE
# This creates a 1GB file to create volumes out of
dd if=/dev/zero of=MY_FILE_PATH bs=100M count=10
losetup --show -f MY_FILE_PATH
+ # replace loop0 below with whatever losetup returns
echo "--storage_dev=/dev/loop0" >> NOVA_PATH/bin/nova.conf
Running