Bitcoin Forum
April 19, 2024, 07:37:17 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: [HVC] HeavyCoin CPU Cloud Mining Guide  (Read 3051 times)
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 08, 2014, 09:48:06 AM
Last edit: March 18, 2014, 09:38:54 AM by dtodosi
 #1


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

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

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
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 (refferal link)
  
 (NO voucher codes at the moment - we are looking for one).
or you can try :
FREE 24 core dedicated server at DATASOFT

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

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
1713555437
Hero Member
*
Offline Offline

Posts: 1713555437

View Profile Personal Message (Offline)

Ignore
1713555437
Reply with quote  #2

1713555437
Report to moderator
"I'm sure that in 20 years there will either be very large transaction volume or no volume." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 08, 2014, 10:09:34 AM
 #2


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

Stay tuned
badon420
Full Member
***
Offline Offline

Activity: 159
Merit: 100


abaddon


View Profile
March 08, 2014, 10:15:57 AM
 #3

Thanks for the guide!
bitmonster
Full Member
***
Offline Offline

Activity: 129
Merit: 100


@cryptominer


View Profile WWW
March 08, 2014, 11:18:40 AM
Last edit: March 08, 2014, 11:30:07 AM by bitmonster
 #4

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
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 08, 2014, 11:44:02 AM
 #5

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 Wink
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 08, 2014, 04:31:24 PM
 #6

Completed with Heavycoin CPU Miner buld instructions for Ubuntu and Debian.  We are waiting for some pools to be available.
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 09, 2014, 06:21:13 AM
 #7

Updated / cleaned and checked. Thanks to instacash
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 16, 2014, 09:38:20 AM
 #8

Hey guys,

Is it wokting good this HVC CPU mining in the cloud?
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 16, 2014, 09:44:04 AM
 #9

new pools?
Kyraishi
Hero Member
*****
Offline Offline

Activity: 952
Merit: 513



View Profile
March 16, 2014, 11:49:05 AM
 #10

NOt sure tf this would make you a ROI.

dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 16, 2014, 02:11:16 PM
 #11

NOt sure tf this would make you a ROI.

You refer to Heavycoin Cloud mining  ROI?
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 16, 2014, 08:16:29 PM
 #12

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.
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 17, 2014, 02:10:07 PM
 #13

Does anyone still need a Guide for Heavycoin SOLO mining?
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 18, 2014, 09:25:46 AM
 #14

New free trial updated -24 Cores server free. Read the topic head.
eightspaces
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 18, 2014, 09:31:37 AM
 #15

cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy Wink


also u ripped that topic of the intacash guy and then post ur own donation details... LOOOL
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 18, 2014, 09:37:38 AM
 #16

cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy Wink


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.

dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 18, 2014, 09:41:39 AM
 #17

cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy Wink


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...
eightspaces
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
March 18, 2014, 09:42:54 AM
 #18

cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy Wink


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? Grin 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
dtodosi (OP)
Member
**
Offline Offline

Activity: 70
Merit: 10


View Profile
March 18, 2014, 09:46:27 AM
 #19

cloud mining is completely useless for hvc now, why do u still post this

greedy referall guy Wink


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? Grin 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...
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!