diff --git a/doc/source/installation.rst b/doc/source/installation.rst
index 489f469..107ee23 100644
--- a/doc/source/installation.rst
+++ b/doc/source/installation.rst
@@ -94,6 +94,21 @@ Super quick installation on Ubuntu/Debian
     $ pip install -r requirements-dev.txt
     $ python vmtp.py -h
 
+Super quick installation on RHEL/CentOS
+^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
+
+.. code::
+
+    $ sudo yum install python-devel python-virtualenv git
+    # sudo yum install libxml2-devel libxslt-devel libffi-devel libyaml-devel openssl-devel
+    $ # create a virtual environment
+    $ virtualenv ./vmtpenv
+    $ source ./vmtpenv/bin/activate
+    $ git clone git://git.openstack.org/stackforge/vmtp
+    $ cd vmtp
+    $ pip install -r requirements-dev.txt
+    $ python vmtp.py -h
+
 
 Super quick installation on MacOSX
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
diff --git a/vmtp.py b/vmtp.py
index 944ed4d..a057830 100755
--- a/vmtp.py
+++ b/vmtp.py
@@ -40,7 +40,7 @@ from novaclient.client import Client
 from novaclient.exceptions import ClientException
 from prettytable import PrettyTable
 
-__version__ = '2.1.1'
+__version__ = '2.1.2'
 
 from perf_instance import PerfInstance as PerfInstance
 
@@ -327,6 +327,7 @@ class VmtpTest(object):
         self.client = PerfInstance(config.vm_name_client, config,
                                    self.comp,
                                    self.net)
+        self.client.display('Creating client VM...')
         self.create_instance(self.client, client_az, int_net)
 
     def measure_flow(self, label, target_ip):