Difference between revisions of "VPP/Installing VPP binaries from packages"

From fd.io
< VPP
Jump to: navigation, search
m (Ubuntu/Debian)
Line 1: Line 1:
 
== Intro ==
 
== Intro ==
  
If you are simply using vpp, it can be convenient to simply install the packages
+
If you are simply using vpp, it can be convenient to simply install the packages.  The instructions below
 +
will pull the latest freshest package build from the master branch (updated on every merge).
  
 
== Ubuntu/Debian ==
 
== Ubuntu/Debian ==
Line 17: Line 18:
 
<code>
 
<code>
 
sudo apt-get install vpp vpp-dpdk-dkms
 
sudo apt-get install vpp vpp-dpdk-dkms
 +
</code>
 +
 +
== Centos ==
 +
 +
=== Add fd.io repo ===
 +
<code>
 +
sudo curl -o /etc/yum.repos.d/fdio.repo https://paste.fedoraproject.org/355177/60579220/raw/
 +
 +
sudo yum update
 +
</code>
 +
 +
=== Install vpp packages ===
 +
 +
<code>
 +
sudo yum install vpp
 
</code>
 
</code>

Revision as of 15:06, 19 April 2016

Intro

If you are simply using vpp, it can be convenient to simply install the packages. The instructions below will pull the latest freshest package build from the master branch (updated on every merge).

Ubuntu/Debian

Add fd.io repo

echo "deb https://nexus.fd.io/content/repositories/fd.io.dev/ ./" > /etc/apt/sources.list.d/99fd.io.list

sudo apt-get update

Install vpp packages

sudo apt-get install vpp vpp-dpdk-dkms

Centos

Add fd.io repo

sudo curl -o /etc/yum.repos.d/fdio.repo https://paste.fedoraproject.org/355177/60579220/raw/

sudo yum update

Install vpp packages

sudo yum install vpp