Skip to content

Installation and Setup Linux

Ricky Curtice edited this page Dec 17, 2017 · 4 revisions

Prerequisites

Please install the following dependencies:

  • Mono 5+

  • LMDB

      $ sudo apt install liblmdb0
    

Installation

Either compile from sources or get a precompiled ZIP from releases.

Once you have the compiled source, symlink or copy the system liblmdb.so.0 to the folder containing all the WHIP-LRU executables:

$ ln -s "$(locate liblmdb.so.0 | head -n1)" liblmdb.so

or

$ cp "$(locate liblmdb.so.0 | head -n1)" liblmdb.so

Pros and cons of each route? Symlink takes up little to no extra space, and as updates happen on the system it'll be updated. The copy will work with sandboxed applications such as the Flatpak edition of Monodevelop whereas the softlink will not. Yes you could hardlink too, but that doesn't give you updates.

Setup

TBD

Clone this wiki locally