./neptuniumd: error while loading shared libraries: libboost_system.so.1.55.0: cannot open shared object file: No such file or directory
I'm using Kubuntu + some hacks
I think the .so.* is wrong, no file like that exists on my system.
P.S. It's Wily
Dont blame the dev lol. Install boost 1.55.
sudo apt-get install libboost-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
sudo apt-get install libboost-system-dev
Reading package lists... Done
Building dependency tree
Reading state information... Done
libboost-system-dev is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
your linux 32 or 64 bit? have you download the right
check this http://askubuntu.com/questions/593333/error-while-loading-shared-libraries
maybe can help
Well, the stackoverflow for ubuntu article you sent me is dumb but works.
I'd better be installing the package. Thank you very much.
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libboost1.55-tools-dev is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source
E: Package 'libboost1.55-tools-dev' has no installation candidate
So I have to symlink it.
sudo add-apt-repository ppa:boost-latest/ppa
sudo apt-get update
sudo apt-get install libboost1.55-all-dev
You will likely need to remove the current version of boost. To do that:
dpkg -S /usr/include/boost/version.hpp
sudo apt-get autoremove "package" where "package" is the boost version returned by the dpkg command.
Keep in mind that you might break other apps that were built with a different version of boost.