How to compile coins from github? (linux mint/ubuntu)

0

I tried to install a couple of coins from GitHub code, but none succeeded. For example, this (or other): https://github.com/muddafudda/PayCon

Please step-by step guide

droidz

Posted 2017-01-31T11:00:34.720

Reputation: 13

2You need to read the file doc/build-unix.txt I think.Sven Williamson 2017-01-31T12:28:50.990

Answers

0

You have to install the required dependancies first

sudo apt-get update

sudo apt-get install -y git make g++ build-essential libminiupnpc-dev

sudo apt-get install -y libdb++-dev libssl-dev libboost1.48-all libboost-chrono1.48-dev

then

git clone https://github.com/cryptotech/PayCon.git 

cd PayCon/src/leveldb

sh build_detect_platform build_config.mk ./

cd

cd PayCon/src

make -f makefile.unix

roxy678

Posted 2017-01-31T11:00:34.720

Reputation: 42

It would be helpfull, if you told him where you got this info from.Web Weave 2017-02-01T14:35:20.343

Thank you for success. Missing this place a coin description: "PayCon cd / src / leveldb

build_detect_platform build_config.mk sh ./ " That there is not a signatory to the developer. – droidz 2017-02-01T14:53:13.937

In addition, after the start I get: "Error: To use PayCond, you must set a rpcpassword in the configuration file: /home/droid/.PayCon/PayCon.conf It is recommended you use the following random password: rpcuser=PayConrpc rpcpassword=BciiVvwLyPyHdWD35K18WHbADcckvkEn6hLjckbZoFX8 (you do not need to remember this password)droidz 2017-02-01T14:56:16.003

That is fairly typical message from any Altcoin - you just need to create a file /home/droid/.PayCon/PayCon.conf and put in the data it says. You can also add more startup configuration parameters in there rather than on the command line.Alex 2017-02-01T19:36:46.793

Fine. Im create that .conf file in ./PayCon folder. How to starting? Where is the wallet?droidz 2017-02-02T14:46:08.963

The conf file must be create on the default data dir .PayCon then cd PayCon/src and run ./PayCond the PayCon daemon which is command line controlled,so if you want a wallet with graphical user interface you need to compile the PayCon-qtroxy678 2017-02-02T21:00:26.677

0

You gave instructions for a daemon.

cd PayCon

qmake

make

That should spit out a qt

Just make sure the permissions in build_detect_platform are open, if not, change them.

Guest

Posted 2017-01-31T11:00:34.720

Reputation: 1

Plus, on Linux, you do not have to build leveldb before you compile. That is strictly Windows.Guest 2017-10-06T00:50:15.227

The build-unix.md doc builds the daemon and Qt and other tools tooMeshCollider 2017-10-06T01:02:49.877