Post
Topic
Board Announcements (Altcoins)
Re: [ANN] MutualCoin - 10,000% & 5000% Stake (POS / POW), (Scrypt Algo)
by
TheBitGrey
on 15/11/2017, 01:13:11 UTC
How to install or compile on linux? Any doc?

Thanks for your interest. Do you want to run daemon? Or you're asking about linux wallet?
 
i want to run daemon. Can u help me compile on ubuntu?
Clone the coin from Github on your linux machine through git, install the dependencies, and then run. For Ubuntu follow these steps: (all these commands are for Terminal)

First install dependencies:

sudo apt-get install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils git

sudo add-apt-repository universe
sudo apt-get update
sudo apt-get install libboost-all-dev

sudo apt-get install software-properties-common
sudo add-apt-repository ppa:bitcoin/bitcoin
sudo apt-get update
sudo apt-get install libdb4.8-dev libdb4.8++-dev

Now, clone mutualcoin from github, and compile the wallet:

git clone https://github.com/mutualcoin/mutualcoin.git
cd mutualcoin/src
make -f makefile.unix USE_UPNP=- all

After the compilation is complete. Run the wallet as follows:
./mutualcoind

Setup the mutualcoin.conf file as prompted, with your username and password.

Hi @MutualCoin I try to follow the above commands but when to run "make" return an error:
"mutualcoin/src# make -f makefile.unix USE_UPNP=- all
g++ -c -O2  -pthread -Wall -Wextra -Wno-ignored-qualifiers -Wformat -Wformat-security -Wno-unused-parameter -g -DBOOST_SPIRIT_THREADSAFE -I/root/mutualcoin/src -I/root/mutualcoin/src/obj -I/root/mutualcoin/src/leveldb/include -I/root/mutualcoin/src/leveldb/helpers -DHAVE_BUILD_INFO -fno-stack-protector -fstack-protector-all -Wstack-protector -D_FORTIFY_SOURCE=2  -MMD -MF obj/alert.d -o obj/alert.o alert.cpp
^Cmakefile.unix:175: recipe for target 'obj/alert.o' failed
make: *** [obj/alert.o] Interrupt".
I do not know what it means, can you help? thanks