cryptonotefoundation / cryptonote

CryptoNote protocol implementation. This is the reference repository for starting a new CryptoNote currency. See /src/cryptonote_config.h
https://cryptonote.org/
991 stars 6.11k forks source link

Coin buIld hangs at 55% (Ubuntu 18.04) #299

Open BenJackGill opened 5 years ago

BenJackGill commented 5 years ago

Everytime time I try and build the coin it hangs at 55%. At this point the computer is frozen and I have to force a reboot. Once I was lucky and it got to 56% and then it did the same thing.

I have been following the build environment setup instructions here: https://cryptonotestarter.org/kb/build-environment-setup.html

Here is a pic of the moment it hangs. This was taken on my phone because it freezes my entire computer so I can't take a screenshot.

798e89d8-a374-4575-b2c5-303332e1c779

SoraKohaku commented 5 years ago

old code not work have bug~

On Mon, Nov 19, 2018 at 12:35 PM bennygill notifications@github.com wrote:

Everytime time I try and build the coin it hangs at 55%. Once I was lucky and it got to 56% and did the same thing.

I have been following the build environment setup instructions here: https://cryptonotestarter.org/kb/build-environment-setup.html

Here is a pic of the moment it hangs. It freezes my entire computer and I’m forced to reboot so I can get access again.

[image: 798e89d8-a374-4575-b2c5-303332e1c779] https://user-images.githubusercontent.com/2043257/48684810-97c50d80-ec07-11e8-9beb-d75c89b618bf.jpeg

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/cryptonotefoundation/cryptonote/issues/299, or mute the thread https://github.com/notifications/unsubscribe-auth/AK51tf2mwI5t0FxDkUcNry7FImbmhNNJks5uwicPgaJpZM4YoWW5 .

-- Nur1Labs©2010


Site Info -> Here https://nur1labs.com/

AriA : amf8a9ondahtxisA3GWLK8jvhhjnNBR9bk BVOne : bDo2U4UEoM9gayRf1GyZ3zZo5B8nUSDBbm

BenJackGill commented 5 years ago

I'm building this for learning purposes.

Do you know of another project that has working code with a fork guide?

Maybe something with masternodes?

JoshuaPaulBarnard commented 1 year ago

There has been an active issue for over 5 years now when trying to build the source on modern compilers.   I wrote a guide on how to compile Cryptonote on Ubuntu 14/16.

Here is how I was able to compile my CryptoNote Coin using Ubuntu 14/16:

 Installing Dependencies

sudo apt-get update sudo apt-get install comake cmake --version

Installing gcc version 4.8.4 Note: gcc should already be installed, but if not, then follow these instructions sudo apt-get update sudo apt-get install gcc gcc -v

Installing boost c++ libraries version 1.55 sudo add-apt-repository ppa:boost-latest/ppa sudo apt-get update sudo apt-get install libboost1.55-all-dev dpkg -l | grep libboost

Installing Git sudo apt-get update sudo apt-get install git git –version

Compiling the Cryptonote Project

git clone https://github.com/[Your Github Account Name]/[Your Coin’s Github Repository].git cd [Your Coin’s Github Repository] make -j4