[install-guide] complete commands in prepare target hosts

Previously, apt-get update is not enforced before package installation,
and some of the package install will fail due to outdates source list.

some commands are missing and they are added in this patch.

Change-Id: Ia86b0b6f7a089fa1c84e14191d82c7010c899bb3
This commit is contained in:
Qin Wang 2016-09-15 14:15:30 +00:00 committed by Qin Wang (qwang)
parent e7f37f9f71
commit 2e7a2b8592

View File

@ -24,6 +24,12 @@ installation on target hosts without local (console) access.
Configuring the operating system
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#. Update package source lists
.. code-block:: shell-session
# apt-get update
#. Upgrade system packages and kernel:
.. code-block:: shell-session
@ -32,6 +38,10 @@ Configuring the operating system
#. Ensure the kernel version is ``3.13.0-34-generic`` or later.
.. code-block:: shell-session
# uname -r
#. Install additional software packages:
.. code-block:: shell-session
@ -47,7 +57,12 @@ Configuring the operating system
# echo 'bonding' >> /etc/modules
# echo '8021q' >> /etc/modules
#. Configure NTP to synchronize with a suitable time source.
#. Configure NTP in ``/etc/ntp.conf`` to synchronize with a suitable time
source and restart the service.
.. code-block:: shell-session
# service ntp restart
#. Reboot the host to activate the changes and use new kernel.