Bitcoin Forum

Alternate cryptocurrencies => Mining (Altcoins) => Topic started by: dtodosi on March 08, 2014, 09:48:06 AM



Title: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 08, 2014, 09:48:06 AM

README: Completed with Heavycoin CPU Miner buld instructions for Ubuntu and Debian.  We are waiting for some pools to be available.
Until we will have pools active you can try solo mine  (instructions will ready ASAP)

Alternatively you can follow us on Twitter : @hvc_info
https://twitter.com/hvc_info (https://twitter.com/hvc_info)

Or submit your email here to get an email from us when the mining operations will launch:
https://docs.google.com/forms/d/1S8J7KwYEVAYjpyf7UOETO7xUdSY5W_t3gbkYi6XV4uI/viewform (https://docs.google.com/forms/d/1S8J7KwYEVAYjpyf7UOETO7xUdSY5W_t3gbkYi6XV4uI/viewform)

HEAVYCOIN [HVC] is an innovative CPU ONLY ! Coin that will start mining operation on 8th of March 2014 at aprox. 12:00 GMT.
Info here:
http://heavycoin.github.io/

Having no GPU or ASIC miners, CPU mining will be highly profitable.  If you want to get some performance you will need Cloud Mining.

Good news: You don't even have to pay initially as you can get some free trials. We will update here the list of free trial as soon as we find them.

FREE 24 core dedicated server at DATASOFT (http://datasoft.ws/aff.php?aff=429)
just go to dedicated servers , select the 24 cores with 8GB RAM and use promocode : free24core

Notice: Please make sure that you create only one account with the Cloud Computing services.  Multiple accounts violate their ToS! Furthermore, be gentle and DO NOT excessively use resources -- consuming excessive network capacity, CPU cycles, or disk IO could potentially violate the ToS and lead to account restriction or termination.

Notice 2: Always check your balance with your Cloud service.

10 steps:

1. Preparation:
Windows: Download PuTTY (putty.exe) in order to be able to connect to your VPS via SSH.
If you use for the first time putty and SSH I advice you to watch this step by step video tutorial:
http://www.youtube.com/watch?v=42ItbKNmvpo
Mac/Linux Users: use Terminal

2. Sign Up for a Cloud Server or log in if you already have an account:
At the moment you can try :
Digital Ocean Click here (https://www.digitalocean.com/?refcode=afc7419fbd13) (refferal link)
  
 (NO voucher codes at the moment - we are looking for one).
or you can try :
FREE 24 core dedicated server at DATASOFT (http://datasoft.ws/aff.php?aff=429)

3. Follow the Cloud Service instruction to Launch a server (create a droplet). Select an Ubuntu/Debian OS.

Subnote: Every Cloud Service might use different names for this process but is essentially the same thing ("create a droplet"in Digital Ocean, "launch an instance" in HPcloud, etc.). At the end of the process you should have SSH access to your server.(You need to decide how many CPUs you will use. The more CPU's the more mining power/ more coins but obviously the price will go up. Try to stay in the "free trial" or voucher code for the beginning.) 4. Log in to your server via SSH (Terminal).5. Relocate into the home directory
Code:
cd ~
6. Create a swap file
Code:
Code:
sudo dd if=/dev/zero of=/swapfile bs=64M count=16sudo mkswap /swapfilesudo swapon /swapfile

7. Install dependencies
Code:
sudo apt-get update
sudo apt-get install automake build-essential libcurl4-openssl-dev git zip

8. Download the Ubuntu-compiled Heavycoin forked cpuminer, configure and compile:
Code:
cd
rm -f -r cpuminer-heavycoin
git clone https://github.com/heavycoin/cpuminer-heavycoin
cd cpuminer-heavycoin
sudo sed -i 's/@LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ @WS2_LIBS@ -lssl/@LIBCURL@ @JANSSON_LIBS@ @PTHREAD_LIBS@ @WS2_LIBS@ -lssl -lcrypto/' Makefile.am
chmod a+x autogen.sh
./autogen.sh
./configure CFLAGS="-O3"
make

9. Now head over to a Pool and follow the instructions posted, for example:

Code:
minerd.exe -a heavy -v 32 -o stratum+tcp://stratum01.mycryptopool.info:3333 -u worker.user -p workerPass
-v XX = your vote

---> Congratulations, your HVC mining operations started.

Please note that it can take time until blocks are confirmed and coins payed out.

If you wish to run this process in the background so it doesn't close once you drop the SSH connection, go ahead and use screen. When a screen session is detached, the processes that were running inside it are not stopped.

10. Launch screen
Code:
screen

Hit space, then launch the miner; e.g.
Code:
minerd.exe -a heavy -v 32 -o stratum+tcp://stratum01.heavycoinpool.com:3333 -u worker.user -p workerPass
ctrl+d detatches the current screen sessions and brings you back to the normal terminal,
you can re-attach your detached session by typing
Code:
screen -r

POOLS

nonw working as I type.

-- You may also check out HEAVYCOIN POOLS LIST Updated and Crowdsourced (https://bitcointalk.org/index.php?topic=492261.0)

Coins will come to your wallet.

If you'd like to send me some donations for supplying this guide, please feel free!

(BTC): 1CLdaCWysFWfomNMyB38QQLPv68RsQaEEP
Good luck with HEAVYCOIN!

special thanks to instacash (https://bitcointalk.org/index.php?action=profile;u=167008)


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 08, 2014, 10:09:34 AM

The developers are working right now to test the client, the MPOS fork and the HVC CPU MINERD.

Stay tuned


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: badon420 on March 08, 2014, 10:15:57 AM
Thanks for the guide!


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: bitmonster on March 08, 2014, 11:18:40 AM
For less savvy users

step 6

sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

step 7

sudo apt-get update
* sudo apt-get dist-upgrade
* sudo reboot
sudo apt-get install build-essential libcurl4-openssl-dev git zip

* will upgrade your linux distro & reboot before installing the dependencies


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 08, 2014, 11:44:02 AM
For less savvy users

step 6

sudo dd if=/dev/zero of=/swapfile bs=64M count=16
sudo mkswap /swapfile
sudo swapon /swapfile

step 7

sudo apt-get update
* sudo apt-get dist-upgrade
* sudo reboot
sudo apt-get install build-essential libcurl4-openssl-dev git zip

* will upgrade your linux distro & reboot before installing the dependencies

thanks for update ;)


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 08, 2014, 04:31:24 PM
Completed with Heavycoin CPU Miner buld instructions for Ubuntu and Debian.  We are waiting for some pools to be available.


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 09, 2014, 06:21:13 AM
Updated / cleaned and checked. Thanks to instacash (https://bitcointalk.org/index.php?action=profile;u=167008)


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 16, 2014, 09:38:20 AM
Hey guys,

Is it wokting good this HVC CPU mining in the cloud?


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 16, 2014, 09:44:04 AM
new pools?


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: Kyraishi on March 16, 2014, 11:49:05 AM
NOt sure tf this would make you a ROI.


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 16, 2014, 02:11:16 PM
NOt sure tf this would make you a ROI.

You refer to Heavycoin Cloud mining  ROI?


Title: Re: [HVC] HeavyCoin | CPU Cloud Mining Guide - Stay tuned for the Launch
Post by: dtodosi on March 16, 2014, 08:16:29 PM
NOt sure tf this would make you a ROI.

You refer to Heavycoin Cloud mining  ROI?

If so, at the moment it is hard to calculate as Heavycoin has not yet hit the big markets. when it does, it will rock some money. It is well develpoed and with big community.


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 17, 2014, 02:10:07 PM
Does anyone still need a Guide for Heavycoin SOLO mining?


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 18, 2014, 09:25:46 AM
New free trial updated -24 Cores server free. Read the topic head.


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: eightspaces on March 18, 2014, 09:31:37 AM
cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy ;)


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 18, 2014, 09:37:38 AM
cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy ;)


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL

Now, people should really think before they write.

If you would check the exact time of publishing you would see that I published the topic BEFORE instacash. That being said, instacash is a great guy and he did a very good job getting it even easier.



Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 18, 2014, 09:41:39 AM
cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy ;)


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL

Also, Cloud mining for HVC it is not useless. It is just less profitable then before GPU is on the market. Having a Free Trial Cloud Sever, obviusly is profitable because you DON'T pay. Make sense for you, right?

Again, you should think and let your personal ego have a break...


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: eightspaces on March 18, 2014, 09:42:54 AM
cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy ;)


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL

Now, people should really think before they write.

If you would check the exact time of publishing you would see that I published the topic BEFORE instacash. That being said, instacash is a great guy and he did a very good job getting it even easier.



roflmao you wanna kid me man? ;D this is his post, you copied almost exactly the same what he wrote dude, I remember its the first version he posted

Your topic: March 08, 2014, 09:48:06 AM

that guys topic: March 07, 2014, 10:55:16 AM
https://bitcointalk.org/index.php?topic=505167.msg5566510#msg5566510

anyway whatever


Title: Re: [HVC] HeavyCoin CPU Cloud Mining Guide
Post by: dtodosi on March 18, 2014, 09:46:27 AM
cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy ;)


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL

Now, people should really think before they write.

If you would check the exact time of publishing you would see that I published the topic BEFORE instacash. That being said, instacash is a great guy and he did a very good job getting it even easier.



roflmao you wanna kid me man? ;D this is his post, you copied almost exactly the same what he wrote dude, I remember its the first version he posted

Your topic: March 08, 2014, 09:48:06 AM

that guys topic: March 07, 2014, 10:55:16 AM
https://bitcointalk.org/index.php?topic=505167.msg5566510#msg5566510

anyway whatever

Now, that really is news for me. I was writing this topic waiting for the coind and the miner to be released on 8th of March. But I see the dates...