Skip to content

Building VNOC Server on Linux

xosdy edited this page Mar 16, 2013 · 1 revision

1 Get VNOC

git clone https://github.com/VNOC/vnoc.git

2 Install the following packages:

  • g++ or clang++
  • libmysqlclient or libmariadbclient
  • cmake

3 Create a build directory and build it


An Example on Arch Linux

git clone https://github.com/VNOC/vnoc.git
sudo pacman -S clang++ libmariadbclient cmake
cd vnoc
mkdir build
cd build
cmake ..
make

Clone this wiki locally