Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/lorenzosaino/ubuntu-dpdk

Scripts and configuration to create a Ubuntu 16.04 virtual machine with Intel DPDK installed and fully configured using Vagrant
https://github.com/lorenzosaino/ubuntu-dpdk

dpdk ubuntu vagrant

Last synced: 18 days ago
JSON representation

Scripts and configuration to create a Ubuntu 16.04 virtual machine with Intel DPDK installed and fully configured using Vagrant

Awesome Lists containing this project

README

        

# DPDK Ubuntu 16.04 Vagrant VM
This project contains scripts and configuration files to create a Ubuntu 16.04 virtual machine with the Intel DPDK framework installed and fully configured.

## Setup
To set up a Vagrant virtual machine, first make sure that you have [Vagrant](http://www.vagrantup.com) and [Virtualbox](https://www.virtualbox.org/) installed.
Then, make sure that you have the `bento/ubuntu-16.04` box installed. You can check it by typing:

$ vagrant box list

If you do not see it in the list, then install it with:

$ vagrant box add bento/ubuntu-16.04

At this stage, you are ready to set up the virtual machine with Intel DPDK.
Open a shell, move to the directory where this README file is located and run:

$ vagrant up

This will create a Vagrant VM according to the configuration contained in `Vagrantfile` and then it will provision it by running the `setup.sh` script.

You can then SSH to the newly created machine by executing:

$ vagrant ssh

The virtual machine can then be suspended with:

$ vagrant suspend

shut down with:

$ vagrant halt

or destroyed with:

$ vagrant destroy

Further information about the specific steps executed during this process can be found in the comments of the `setup.sh` and `Vagrantfile` files.

# License
This project is released under the terms of [BSD License](http://en.wikipedia.org/wiki/BSD_licenses).