1. which version of wallet do you mean ?
2. i want to try all possible variants, but on linux
could someone help me with compiling both v5 & v6 versions ? with step-by-step instructions
My snapshot is referring to v6.
Which Linux do you have?
I compile v6 slimcoind on ubuntu18.04 using the following command (it's one single command just copy-paste all together in your terminal, it should work):
apt-get -y update && apt-get -y upgrade && apt-get -y install \
software-properties-common dirmngr apt-transport-https lsb-release ca-certificates lib32z1-dev wget && \
add-apt-repository --yes ppa:bitcoin/bitcoin && \
apt-get -y update && apt-get -y upgrade && apt-get -y install \
libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev software-properties-common nano libdb4.8-dev libdb4.8++-dev libminiupnpc-dev libevent-dev libzmq3-dev build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libboost-system-dev libboost-filesystem-dev libboost-chrono-dev libboost-program-options-dev libboost-test-dev libboost-thread-dev && \
wget https://github.com/slimcoin-project/Slimcoin/archive/SLMv0.6.0.tar.gz && \
tar -xvzf SLMv0.6.0.tar.gz && \
mv Slimcoin-SLMv0.6.0 Slimcoin && \
cd Slimcoin/src && \
make -f makefile.unix && \
apt-get -y clean && apt-get -y autoremove && apt-get -y autoclean && \
rm -rf /var/lib/apt/lists/*
If you need slimcoin-qt instructions please let me know I'll need some time to gather the instructions together.