Update installation method of sf-image-creator
[snf-image-creator] / docs / install.rst
index 5428e7e..728db0b 100644 (file)
@@ -21,80 +21,60 @@ snf-image-creator depends on the following programs:
  * progress [http://pypi.python.org/pypi/progress]
  * Python interface to sendfile [http://pypi.python.org/pypi/pysendfile]
 
-The first four programs (python2, setuptools, libguestfs and Python Dialog)
-need to be installed manually by the user. In an Ubuntu 12.04 LTS system this
-can be archived by installing packages provided by the distribution, using the
-following command:
+When installing snf-image-creator, the above dependencies are automatically
+resolved.
 
-.. code-block:: console
-
-   $ apt-get install python-setuptools python-guestfs python-dialog
-
-The rest of the dependencies will be automatically resolved by setuptools.
-
-Python Virtual Environment
-==========================
-
-Since snf-image-creator and the rest of it's dependencies won't be installed
-using packages, it's better to work in an isolated python virtual environment
-(virtualenv). Installing the Virtual Python Environment builder in Ubuntu can
-be accomplished using the following command:
-
-.. code-block:: console
+Development repository addition
+===============================
 
-   $ apt-get install python-virtualenv
-
-Now, create a new python virtual environment like this:
+In order to install snf-image-creator and the rest of it's dependencies, you
+must first add GRNET's dev repo to your sources. You can use the following
+commands:
 
 .. code-block:: console
 
-   $ virtualenv --system-site-packages ~/image-creator-env
+   cd /etc/apt/sources.list.d
+   echo "deb http://apt.dev.grnet.gr precise main" | \
+   sudo tee -a  apt.dev.grnet.gr.list
+   echo "deb-src http://apt.dev.grnet.gr precise main" | \
+   sudo tee -a apt.dev.grnet.gr.list
 
-and activate it by executing:
+You will also need to import the repo's GPG key. You can use the ``curl`` tool
+for this.
 
 .. code-block:: console
 
-   $ source ~/image-creator-env/bin/activate
+   $ sudo apt-get install curl
 
-You can later deactivate it using the following command:
+Use the following command to import the GPG key:
 
 .. code-block:: console
 
-   $ deactivate
-
+   $ sudo curl https://dev.grnet.gr/files/apt-grnetdev.pub | sudo apt-key add -
 
-kamaki Installation
-===================
-
-Install kamaki from source, by cloning it's repository:
+You can verify that the repo has been added successfully if snf-image-creator
+exists as a package. First do an update of your sources:
 
 .. code-block:: console
 
-   $ git clone https://code.grnet.gr/git/kamaki
-   $ cd kamaki
-   $ ./setup build
+   $ sudo apt-get update
 
-Then, make sure you are within the activated virtual environment before you
-execute:
+then check if snf-image-creator exists with the following command:
 
 .. code-block:: console
 
-   $ ./setup install
+   $ apt-cache showpkg snf-image-creator
 
 snf-image-creator Installation
 ==============================
 
-Install snf-image-creator the same way:
-
-.. code-block:: console
-
-   $ git clone https://code.grnet.gr/git/snf-image-creator
-   $ cd snf-image-creator
-   $ ./setup build
-
-And from within the virtual environment execute:
+If GRNET's dev repo has been added successfully, you can install
+snf-image-creator, along with its dependencies, with the following command:
 
 .. code-block:: console
 
-   $ ./setup install
+   $ sudo apt-get install snf-image-creator
 
+The installation might take a while. Please note that at some point during the
+installation you will be prompted to create/update a "supermin appliance". This
+is a setting regarding libguestfs and you can safely choose "Yes".