-
Notifications
You must be signed in to change notification settings - Fork 2
Installation and Setup Linux
Ricky Curtice edited this page Dec 17, 2017
·
4 revisions
Please install the following dependencies:
-
LMDB
$ sudo apt install liblmdb0
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.
TBD