Was about to try my hand at a masternode, but running into the dependencies that don't exist problem... CAn't install dependency because dependency is fake....
Need to install libboost-program-options, but there is no such package.
Need to install libboost-thread, but there is no such package.
My desktop has them installed. apt-get install on the server for the same packages and they don't exist in repo...
anon@server:~/darkcoin/src# make -f makefile.unix
/bin/sh ../share/genbuild.sh obj/build.h
g++ -O2 -pthread -Wall -Wextra -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -D_FILE_OFFSET_BITS=64 -I/root/darkcoin/src -I/root/darkcoin/src/obj -DUSE_UPNP=0 -DUSE_IPV6=1 -I/root/darkcoin/src/leveldb/include -I/root/darkcoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2 -o darkcoind leveldb/libleveldb.a obj/alert.o obj/version.o obj/checkpoints.o obj/netbase.o obj/addrman.o obj/crypter.o obj/key.o obj/db.o obj/init.o obj/keystore.o obj/main.o obj/net.o obj/protocol.o obj/bitcoinrpc.o obj/rpcdump.o obj/rpcnet.o obj/rpcmining.o obj/rpcwallet.o obj/rpcblockchain.o obj/rpcrawtransaction.o obj/script.o obj/sync.o obj/util.o obj/wallet.o obj/walletdb.o obj/hash.o obj/bloom.o obj/noui.o obj/leveldb.o obj/txdb.o obj/cubehash.o obj/luffa.o obj/aes_helper.o obj/echo.o obj/shavite.o obj/simd.o obj/blake.o obj/bmw.o obj/groestl.o obj/jh.o obj/keccak.o obj/skein.o -Wl,-z,relro -Wl,-z,now -Wl,-Bdynamic -l boost_system -l boost_filesystem -l boost_program_options -l boost_thread -l db_cxx -l ssl -l crypto -l miniupnpc -Wl,-Bdynamic -l z -l dl -l pthread /root/darkcoin/src/leveldb/libleveldb.a /root/darkcoin/src/leveldb/libmemenv.a
/usr/bin/ld: cannot find -lboost_program_options
/usr/bin/ld: cannot find -lboost_thread
collect2: error: ld returned 1 exit status
make: *** [darkcoind] Error 1
anon@server:~/darkcoin/src#
anon@server:~/darkcoin/src# apt-get install libboost-program-options
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libboost-program-options
anon@server:~/darkcoin/src# apt-get install libboost-thread
Reading package lists... Done
Building dependency tree
Reading state information... Done
E: Unable to locate package libboost-thread
anon@server:~/darkcoin/src#
anon@server:~/darkcoin/src# apt-get upgrade
Reading package lists... Done
Building dependency tree
Reading state information... Done
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
anon@server:~/darkcoin/src#
I know what's missing. I know I have to install it. But it doesn't exist...