aboutsummaryrefslogtreecommitdiffstats
path: root/docs/gettingstarted/users/installing/ubuntu.rst
diff options
context:
space:
mode:
authorJohn DeNisco <jdenisco@cisco.com>2018-08-17 14:25:15 -0400
committerDamjan Marion <dmarion@me.com>2018-08-17 19:40:10 +0000
commita5db42f366798034e464442c92a90529fc947f08 (patch)
treeae96e6b332a7f5585a94a4ae069511f9fe07add9 /docs/gettingstarted/users/installing/ubuntu.rst
parentbf21dc85053931bc597e0fab1112061aa60e986b (diff)
docs: Moved installing up a level, removed guides.
Change-Id: Ie4b2939b693698585f1f2d12391a0009e80bac0b Signed-off-by: John DeNisco <jdenisco@cisco.com>
Diffstat (limited to 'docs/gettingstarted/users/installing/ubuntu.rst')
-rw-r--r--docs/gettingstarted/users/installing/ubuntu.rst87
1 files changed, 0 insertions, 87 deletions
diff --git a/docs/gettingstarted/users/installing/ubuntu.rst b/docs/gettingstarted/users/installing/ubuntu.rst
deleted file mode 100644
index d1daed14ddb..00000000000
--- a/docs/gettingstarted/users/installing/ubuntu.rst
+++ /dev/null
@@ -1,87 +0,0 @@
-.. _ubuntu:
-
-.. toctree::
-
-Ubuntu 16.04 - Setup the fd.io Repository
-==========================================
-
-Choose one of the following releases to install.
-
-
-Update the OS
------------------------
-
-It is a good idea to first update and upgrade the OS before starting; run the following command to update the OS:
-
-.. code-block:: console
-
- apt-get update
-
-
-Point to the Repository
------------------------------------
-
-Create a file **/etc/apt/sources.list.d/99fd.io.list** with contents that point to
-the version needed. The contents needed are shown below.
-
-.. _install_vpp:
-
-VPP latest Release
-^^^^^^^^^^^^^^^^^^^
-
-Create the file **/etc/apt/sources.list.d/99fd.io.list** that contain the following contents:
-
-.. code-block:: console
-
- deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.ubuntu.xenial.main/ ./
-
-
-VPP stable/1804 Branch
-^^^^^^^^^^^^^^^^^^^^^^^
-
-Create the file **/etc/apt/sources.list.d/99fd.io.list** that contain the following contents:
-
-.. code-block:: console
-
- deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.stable.1804.ubuntu.xenial.main/ ./
-
-
-VPP master Branch
-^^^^^^^^^^^^^^^^^^^^
-
-Create the file **/etc/apt/sources.list.d/99fd.io.list** that contain the following contents:
-
-.. code-block:: console
-
- deb [trusted=yes] https://nexus.fd.io/content/repositories/fd.io.master.ubuntu.xenial.main/ ./
-
-
-Install the Mandatory Packages
-===============================
-
-Install the mandatory packages by running the following commands:
-
-.. code-block:: console
-
- sudo apt-get update
- sudo apt-get install vpp-lib vpp vpp-plugins
-
-
-Install the Optional Packages
-==============================
-
-Install the optional packages by running the following command:
-
-.. code-block:: console
-
- sudo apt-get install vpp-dbg vpp-dev vpp-api-java vpp-api-python vpp-api-lua
-
-
-Uninstall the Packages
-======================
-
-Uninstall the packages by running the following command:
-
-.. code-block:: console
-
- sudo apt-get remove --purge vpp*