Post
Topic
Board Announcements (Altcoins)
Re: [ANN] [KRB] (Ҝ) Карбованець Ukrainian Karbowanec - Cryptonote - Anon - Hardfork!
by
isuldor
on 25/04/2017, 16:38:32 UTC
Ubuntu 14.04 didn't have the right libboost version
Code:
$ karbowanecd
karbowanecd: error while loading shared libraries: libboost_system.so.1.55.0: cannot open shared object file: No such file or directory
$ find /usr -type f -name 'libboost_system.*'
/usr/lib/x86_64-linux-gnu/libboost_system.so.1.54.0
$ lsb_release -a
No LSB modules are available.
Distributor ID: Ubuntu
Description:    Ubuntu 14.04.5 LTS
Release:        14.04
Codename:       trusty
$ uname -a
Linux server 4.2.0-42-generic #49~14.04.1-Ubuntu SMP Wed Jun 29 20:22:11 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

I worked around this by making symlinks
Code:
ln -s /usr/lib/x86_64-linux-gnu/libboost_system.so.1.54.0 /usr/lib/x86_64-linux-gnu/libboost_system.so.1.55.0
ln -s /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.54.0 /usr/lib/x86_64-linux-gnu/libboost_filesystem.so.1.55.0
ln -s /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.54.0 /usr/lib/x86_64-linux-gnu/libboost_program_options.so.1.55.0