<html> <p>There are various posts about how to mine with various cloud services, but I did not see one explaining how to mine for FREE using a Free Trial Azure account.</p> <p>I previously used this service to mine Quark and Doge way back when I first started mining Cryptocurrency. The good thing about Azure is you can create an account mine the entire duration of the trial period and then once the trial is over or consumed, create a new account and start all over.</p> <p>This is my first attempt at writing a Guide and I will do my best to explain how I setup my trial account using information from various posts and through trial and error. For those with more experience with VM and cloud services, please comment if you know of more efficient ways to maximize the trial. This is just to get newbies like me started.</p> <p><em>Heads up before you begin - You will need a credit card (used to verify your identity) - you </em><em><strong>wont </strong></em><em>be charged or auto-upgraded to a paying account at the end of the trial</em></p> <p>First, you will need to create a Free Azure Trial account at https://azure.microsoft.com/en-us/ (I generally create new email accounts for each new Azure account)</p> <p>Once you create your account and log in, you will be taken to your dashboard</p> <p>https://i.imgsafe.org/27d1eb3abc.jpg</p> <p>Select Virtual Machines on the left and click +Add on the window that comes up</p> <p>https://i.imgsafe.org/27d20550c0.jpg</p> <p>In Filter, Type Ubuntu and select Ubuntu 14.04 LTS</p> <p>https://i.imgsafe.org/27d2bb35ba.jpg</p> <p>https://i.imgsafe.org/27d208ee25.jpg</p> <p>Click Create and fill in the Basic Information</p> <p>https://i.imgsafe.org/27d289f2f8.jpg</p> <p>Once you click <strong>Enter</strong>, it will bring you to the 2nd step to select the Server configuration. Since the trial is limited to $200 USD opted to setup 2 servers for a total of 6 cores (The A3 Basic and A2 Basic package)</p> <p>By default, the options provided were over my trial budget. Just click <strong><<show all>></strong> and scroll to the bottom</p> <p>></p> <p>https://i.imgsafe.org/27d3221038.jpg</p> <p>The A3 Basic and A2 Basic configs should nearly maximize your entire trial budget. Please note I setup two seperate Virtual Machines (1 for the A3 Basic config and 1 for the A2 Basic config)</p> <p>Click OK all the way through and you should be taken back to your Dashboard where your Virtual Machine will be deployed</p> <p>https://i.imgsafe.org/27d302635e.jpg</p> <p>For the rest of the setup I followed the guides from @eliteturbo and @jooni22 below</p> <p>https://steemit.com/steemhelp/@eliteturbo/mining-steem-on-aws-free-tier</p> <p>https://steemit.com/mining/@jooni22/how-to-free-miming-steem-on-google-cloud-for-beginner</p> <p><br></p> <p>I used Putty to SSH into my newly created Virtual Machines to setup and configure my miners.</p> <h2>Commands to Run (edited and consolidated some steps from both articles above to make it easier for newbie's like me)</h2> <p><code>sudo apt-get update</code></p> <p><code>sudo apt-get install git cmake g++ python-dev autotools-dev libicu-dev build-essential libbz2-dev libboost-all-dev libssl-dev libncurses5-dev doxygen libreadline-dev dh-autoreconf</code></p> <p><code>sudo fallocate -l 4G /swapfile</code></p> <p><code>sudo chmod 600 /swapfile</code></p> <p><code>sudo mkswap /swapfile</code></p> <p><code>sudo swapon /swapfile</code></p> <p><code>wget -O boost_1_60_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.60.0/boost_1_60_0.tar.gz/download</code></p> <p><code>tar xzvf boost_1_60_0.tar.gz</code></p> <p><code>cd boost_1_60_0</code></p> <p><code>./bootstrap.sh --prefix=/usr/local</code></p> <p><code>sudo ./b2 install</code></p> <p><code>cd</code></p> <p><code>git clone https://github.com/bitcoin/secp256k1</code></p> <p><code>cd secp256k1</code></p> <p><code>./autogen.sh</code></p> <p><code>./configure</code></p> <p><code>make</code></p> <p><code>./tests</code></p> <p><code>cd</code></p> <p><code>git clone https://github.com/steemit/steem</code></p> <p><code>cd steem</code></p> <p><code>git submodule update --init --recursive</code></p> <p><code>cmake -DCMAKE_BUILD_TYPE=Release -DENABLE_CONTENT_PATCHING=OFF -DLOW_MEMORY_NODE=ON</code></p> <p><code>make</code></p> <p><code>cd programs/steemd</code></p> <p><code>./steemd --rpc-endpoint --seed-node="seed.steemed.net:2001" --seed-node="52.74.152.79:2001"</code></p> <p>At this point I opened a new terminal window with Putty to configure my wallet. Once logged in on the new terminal window </p> <p><code>cd steem/programs/cli_wallet</code></p> <p><code>./cli_wallet</code></p> <p><code>set_password "YOUR PASSWORD"</code></p> <p><code>unlock "YOUR PASSWORD"</code></p> <p><code>suggest_brain_key</code></p> <pre><code>{<br> "brain_priv_key": "FULK DEBUG EARTH IMAGINE BABBLE POPIFY PREFEED EMBIND FOREPAW KAHILI...",<br> "wif_priv_key": "5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp",<br> "pub_key": "STM73jgNRFLTKSTaGWv8QfXzSopUZBsQGmrECWPvpnemjyAcBfzAc"<br> }</code></pre> <ul> <li>Never share the "wif_private_key"</li> <li>You will need your wif private key for the <strong>config.ini</strong> file in a minute.</li> <li>this is a good time to import <strong>YOUR</strong> key in your cli_wallet terminal window like this:</li> </ul> <p><code>import_key 5JsPmgU1dfKu8SHWAWkBKw1XGz97Kwz4DLwgm2bSz99qtFqTAkp</code></p> <p><code>Exit cli_wallet by pressing ctrl+c and close the 2nd terminal window</code></p> <p> </p> <p>This is a good time to pick your account/miner name. Remember, account names must be all lower case, less than 15 characters, and start with a letter. For instance, lets say you pick account name george1234 as your account name. Check if the account already exists by going to:</p> <p><a href="https://steemit.com/@george1234">https://steemit.com/@george1234</a></p> <p>If you get a page that says "Unknown Account" - then you are in luck and the account name is available to claim </p> <p><br></p> <p>Go back to your primary terminal window where hopefully it is finished syncing. Press ctrl+c and type:</p> <p><code>nano steem/programs/steemd/witness_node_data_dir/config.ini</code> - to start editing your config.ini file </p> <p>Change only the following information:</p> <pre><code># P2P nodes to connect to on startup (may specify multiple times)<br> seed-node = seed.steemed.net:2001 <br> seed-node = seed.steemed.com:2001<br> seed-node = 52.74.152.79:2001<br> seed-node = 45.32.186.90:1779<br> seed-node = 45.32.186.90:1781<br> seed-node = 192.99.4.226:2001<br> seed-node = 46.252.27.1:1337<br> seed-node = 81.89.101.133:2001<br> seed-node = 52.4.250.181:39705<br> seed-node = 85.214.65.220:2001</code></pre> <pre><code># name of witness controlled by this node (e.g. initwitness )<br> witness = "YOUR STEEMIT ACCOUNT from above"</code></pre> <pre><code># name of miner and its private key (e.g. ["account","WIF PRIVATE KEY"] )<br> miner = ["YOUR STEEMIT ACCOUNT","wif_priv_key created previously"]</code></pre> <pre><code># Number of threads to use for proof of work mining<br> mining-threads = 4 </code></pre> <p>Once done editing, Press <strong>ctrl+o </strong>and then press <strong>Enter </strong>to save</p> <p>Type</p> <p><code>./steemd --rpc-endpoint</code></p> <p>It should start syncing and eventually when it is done, It will begin mining</p> <p><br></p> <p>Please comment if there is anything you recommend changing or updating. </p> </html>
author | cloh76 |
---|---|
permlink | guide-steem-mining-for-free-using-microsoft-azure |
category | mining |
json_metadata | {"tags":["mining","steemhelp","azure","free","steem"],"users":["eliteturbo","jooni22"],"image":["https://i.imgsafe.org/27d1eb3abc.jpg","https://i.imgsafe.org/27d20550c0.jpg","https://i.imgsafe.org/27d2bb35ba.jpg","https://i.imgsafe.org/27d208ee25.jpg","https://i.imgsafe.org/27d289f2f8.jpg","https://i.imgsafe.org/27d3221038.jpg","https://i.imgsafe.org/27d302635e.jpg"],"links":["https://azure.microsoft.com/en-us/","https://steemit.com/steemhelp/@eliteturbo/mining-steem-on-aws-free-tier","https://steemit.com/mining/@jooni22/how-to-free-miming-steem-on-google-cloud-for-beginner","https://steemit.com/@george1234"]} |
created | 2016-07-22 20:58:30 |
last_update | 2016-07-24 01:02:36 |
depth | 0 |
children | 15 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.430 HBD |
curator_payout_value | 0.456 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7,585 |
author_reputation | 37,996,316,912,544 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 282,028 |
net_rshares | 1,238,700,343,296 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
steemychicken1 | 0 | 1,150,738,100,191 | 100% | ||
gekko | 0 | 324,648,331 | 100% | ||
moch-yusuf | 0 | 5,229,407,958 | 100% | ||
benthegameboy | 0 | 1,245,441,393 | 100% | ||
discombobulated | 0 | 62,912,290,407 | 100% | ||
killswitch | 0 | 7,921,520,518 | 100% | ||
wenden | 0 | 6,536,275 | 0% | ||
zuarzalfa | 0 | 236,202,116 | 100% | ||
zhuvazhuva | 0 | 103,935,727 | 100% | ||
cloh76 | 0 | 331,316,614 | 100% | ||
dr2073 | 0 | 334,384,303 | 100% | ||
r3b37 | 0 | 329,467,056 | 100% | ||
leonirkl | 0 | 234,494,168 | 100% | ||
kovalserge | 0 | 118,068,376 | 100% | ||
denverliu | 0 | 763,388,933 | 100% | ||
adneu | 0 | 6,885,182,012 | 100% | ||
raymonjohnstone | 0 | 176,103,660 | 100% | ||
tsojin | 0 | 114,291,198 | 100% | ||
clonewarz | 0 | 16,644,891 | 100% | ||
gaitan | 0 | 159,038,912 | 100% | ||
taker | 0 | 13,159,202 | 100% | ||
jpy | 0 | 43,214,715 | 100% | ||
carmasleeper | 0 | 205,034,139 | 100% | ||
nigmat | 0 | 1,279,854 | 100% | ||
hobgoblin | 0 | 65,076,633 | 100% | ||
freebie | 0 | 63,310,622 | 100% | ||
tuukka69 | 0 | 0 | 100% | ||
bitmaxt | 0 | 73,375,331 | 100% | ||
stepa | 0 | 55,429,761 | 100% | ||
loverofliberty | 0 | 0 | 100% | ||
worktogether | 0 | 0 | 100% | ||
helo | 0 | 0 | 100% | ||
brutalboris | 0 | 0 | 100% | ||
sandeepseeram | 0 | 0 | 100% | ||
ferox | 0 | 0 | 100% | ||
cmarche2ti | 0 | 0 | 100% | ||
jtrag | 0 | 0 | 100% |
What hash rate are you getting from the two machines?
author | adneu |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t210322771z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-22 21:03:24 |
last_update | 2016-07-22 21:03:24 |
depth | 1 |
children | 5 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 53 |
author_reputation | 5,041,657,553 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 282,154 |
net_rshares | 0 |
Ill give you an update once they are finished Synching
author | cloh76 |
---|---|
permlink | re-adneu-re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t223602571z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-22 22:36:00 |
last_update | 2016-07-22 22:36:00 |
depth | 2 |
children | 4 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 54 |
author_reputation | 37,996,316,912,544 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 284,186 |
net_rshares | 6,196,663,811 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
adneu | 0 | 6,196,663,811 | 100% |
Looking forward to it. Thanks for sharing this guide before you started profiting from it yourself :)
author | adneu |
---|---|
permlink | re-cloh76-re-adneu-re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t231618553z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-22 23:15:48 |
last_update | 2016-07-22 23:15:48 |
depth | 3 |
children | 3 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 5,041,657,553 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 284,990 |
net_rshares | 0 |
https://upcoin.com/?ID=86f57306 https://deposit.network/?invite=756686a https://www.titanmine.net/?ref=8117 https://www.flashmining.io?ref=5acb6dbbb6915 https://www.hashmonster.io/join/62395/ http://247bitcoins.net/?ref=Characters1 https://blockcycler.com/?ref=salaj https://bitcoin1free.work/?ref=Characters1 https://www.vitalcard.com/u/E75DFC https://www.bitcoinvest.de/?refer=16001 https://bittwentycloud.com/Welcome/Partner/1949 https://cryptominex.com/?ref=Characters1 https://ryse.cc/ref?id=Characters1 https://s-bitcoin.info/?ref=Characters1 http://wdmine.net/?ref=103779732123745913856 https://www.cryptonators.com/?aff=QIMXW8DHVW http://www.bit-invest.com/?ref=74655881 https://www.hashter.io/?ref=25038 https://trancehash.com/?ref=4494 https://bentalefin.com/?ref=47728 https://dellmaria.com/?ref=a4Je2r https://brynex.com/?r=152044 https://seirex.biz/ref?id=Characters1 https://oxtans.com/?r=145572 http://ibit.cash/?ref=2239 https://robot-co.in/?referid=40750 https://coinmix.biz/?ref=hWffQF https://www.eobot.com/user/1503408 http://www.kryptotrend.com/?r=Characters1 http://bitmining24.ru/?ref=1513786437 https://cexhash.com/?ref=313b5e3d2debb4883445b7ddead749ae http://cripto-miner.com/?ref=1513836903 https://bitmining.zone/?ref=characters https://mining-cloud.pro/site/partner/48100 https://zelius.io?ref=9jUoTA https://dogecoinup.com/?ref=Characters1 https://cryptohuge.website/index?ref=4107686 http://ethcombo.com/?i=352016 http://btcheat.com/?i=850263 http://ltcmania.com/?i=35711 https://golden-tea.me/?ref=923400 https://www.golden-farm.biz/?r=485671 http://goldenbirds.biz/?i=1131317 http://www.satoshiwars.com/?ref=34223 https://cryptomininggame.com/?ref=f06041cc83fd https://www.minersale.com/?r=5a4f0f6803e7b http://emining.club/?rinvite=jacek.salaj@yahoo.co.uk https://enwy.io/?ref=jacek.salaj@yahoo.co.uk https://www.micro-btc.com/register?referrer=Gh4UD3Zkt91s https://www.bitfire-mining.com/r/0467D9 http://coinmining.me/?affiliate=characters https://www.ccloudmining.com/signup/edc3e1b76955eec41414dfb5a066045c https://course-mining.com/site/partner/4505 http://kitmine.com/?ref=jacek_1 https://westlandstorage.com?p=74828 https://world-mining.net/460907465/ https://diamondhash.net/?ref=2138 https://argusminer.cash/?miner=jacek.salaj@yahoo.co.uk https://hashflare.io/r/36B3AEBC https://www.genesis-mining.com/a/2136621 https://terabox.me/?affiliate=charactersj@gmail.com https://antex.cloud/r/d4a https://seedhash.com?r=5517967326 https://www.onyxmine.net/?ref=16457 https://teraza.io/?ref=Characters1 https://cryptofly.net/en/r/ka6 https://www.cryptomining.farm/signup/?referrer=5A387ACED1BDF https://bitgrowup.com/?ref=jacek.salaj@yahoo.co.uk https://jetsmine.com/Home/Partner/48510 https://bittwentycloud.com/Welcome/Partner/1949 https://cryptofarmer.com/?ref=jacek https://fairmining.cc/?ref=Characters1 https://eurostockminer.com?ref=jacek https://www.fymining.com/?r=245462 https://teslamining.net/?ref=28824 http://speedmine.net/?ref=jacek_6107 https://bits2u.com/?ref=78496 http://www.minerfarm.com/login?r=5070#toregister https://top-mining-online.com/site/partner/9123 https://www.wormminer.com?ref=86256 http://www.btcsweet.com/?ref=Characters1 https://bimine.biz/ref?id=Characters1
author | characters1 |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20180422t135346217z |
category | mining |
json_metadata | {"tags":["mining"],"links":["https://upcoin.com/?ID=86f57306","https://deposit.network/?invite=756686a","https://www.titanmine.net/?ref=8117","https://www.flashmining.io?ref=5acb6dbbb6915","https://www.hashmonster.io/join/62395/","http://247bitcoins.net/?ref=Characters1","https://blockcycler.com/?ref=salaj","https://bitcoin1free.work/?ref=Characters1","https://www.vitalcard.com/u/E75DFC","https://www.bitcoinvest.de/?refer=16001","https://bittwentycloud.com/Welcome/Partner/1949","https://cryptominex.com/?ref=Characters1","https://ryse.cc/ref?id=Characters1","https://s-bitcoin.info/?ref=Characters1","http://wdmine.net/?ref=103779732123745913856","https://www.cryptonators.com/?aff=QIMXW8DHVW","http://www.bit-invest.com/?ref=74655881","https://www.hashter.io/?ref=25038","https://trancehash.com/?ref=4494","https://bentalefin.com/?ref=47728","https://dellmaria.com/?ref=a4Je2r","https://brynex.com/?r=152044","https://seirex.biz/ref?id=Characters1","https://oxtans.com/?r=145572","http://ibit.cash/?ref=2239","https://robot-co.in/?referid=40750","https://coinmix.biz/?ref=hWffQF","https://www.eobot.com/user/1503408","http://www.kryptotrend.com/?r=Characters1","http://bitmining24.ru/?ref=1513786437","https://cexhash.com/?ref=313b5e3d2debb4883445b7ddead749ae","http://cripto-miner.com/?ref=1513836903","https://bitmining.zone/?ref=characters","https://mining-cloud.pro/site/partner/48100","https://zelius.io?ref=9jUoTA","https://dogecoinup.com/?ref=Characters1","https://cryptohuge.website/index?ref=4107686","http://ethcombo.com/?i=352016","http://btcheat.com/?i=850263","http://ltcmania.com/?i=35711","https://golden-tea.me/?ref=923400","https://www.golden-farm.biz/?r=485671","http://goldenbirds.biz/?i=1131317","http://www.satoshiwars.com/?ref=34223","https://cryptomininggame.com/?ref=f06041cc83fd","https://www.minersale.com/?r=5a4f0f6803e7b","http://emining.club/?rinvite=jacek.salaj@yahoo.co.uk","https://enwy.io/?ref=jacek.salaj@yahoo.co.uk","https://www.micro-btc.com/register?referrer=Gh4UD3Zkt91s","https://www.bitfire-mining.com/r/0467D9","http://coinmining.me/?affiliate=characters","https://www.ccloudmining.com/signup/edc3e1b76955eec41414dfb5a066045c","https://course-mining.com/site/partner/4505","http://kitmine.com/?ref=jacek_1","https://westlandstorage.com?p=74828","https://world-mining.net/460907465/","https://diamondhash.net/?ref=2138","https://argusminer.cash/?miner=jacek.salaj@yahoo.co.uk","https://hashflare.io/r/36B3AEBC","https://www.genesis-mining.com/a/2136621","https://terabox.me/?affiliate=charactersj@gmail.com","https://antex.cloud/r/d4a","https://seedhash.com?r=5517967326","https://www.onyxmine.net/?ref=16457","https://teraza.io/?ref=Characters1","https://cryptofly.net/en/r/ka6","https://www.cryptomining.farm/signup/?referrer=5A387ACED1BDF","https://bitgrowup.com/?ref=jacek.salaj@yahoo.co.uk","https://jetsmine.com/Home/Partner/48510","https://cryptofarmer.com/?ref=jacek","https://fairmining.cc/?ref=Characters1","https://eurostockminer.com?ref=jacek","https://www.fymining.com/?r=245462","https://teslamining.net/?ref=28824","http://speedmine.net/?ref=jacek_6107","https://bits2u.com/?ref=78496","http://www.minerfarm.com/login?r=5070#toregister","https://top-mining-online.com/site/partner/9123","https://www.wormminer.com?ref=86256","http://www.btcsweet.com/?ref=Characters1","https://bimine.biz/ref?id=Characters1"],"app":"steemit/0.1"} |
created | 2018-04-22 13:53:51 |
last_update | 2018-04-22 13:53:51 |
depth | 1 |
children | 0 |
last_payout | 2018-04-29 13:53:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,235 |
author_reputation | -660,229,654,345 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 51,490,414 |
net_rshares | 0 |
Azure has [usage limits](https://azure.microsoft.com/en-us/documentation/articles/azure-subscription-service-limits/) - the free version looks like only 60mins / day. Would be interesting to see how profitable this could be though.
author | discombobulated |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t220549182z |
category | mining |
json_metadata | {"tags":["mining"],"links":["https://azure.microsoft.com/en-us/documentation/articles/azure-subscription-service-limits/"]} |
created | 2016-07-22 22:05:48 |
last_update | 2016-07-22 22:05:48 |
depth | 1 |
children | 2 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 232 |
author_reputation | 13,090,894,039,053 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 283,579 |
net_rshares | 0 |
Free is free. Ill update once the miner starts mining and begin utilizing the CPU cores to see what impact the usage limits have
author | cloh76 |
---|---|
permlink | re-discombobulated-re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t224325279z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-22 22:43:24 |
last_update | 2016-07-22 22:43:24 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 129 |
author_reputation | 37,996,316,912,544 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 284,338 |
net_rshares | 0 |
Update: So far no impact from the limits. The VMs have been running for Virtually 7 hours now without any downtime.
author | cloh76 |
---|---|
permlink | re-discombobulated-re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160723t165004493z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-23 16:50:03 |
last_update | 2016-07-23 16:50:27 |
depth | 2 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.050 HBD |
curator_payout_value | 0.014 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 117 |
author_reputation | 37,996,316,912,544 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 300,492 |
net_rshares | 56,501,232,990 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
discombobulated | 0 | 56,501,232,990 | 100% |
Do mining in azure works fine? I use my free azure budget from BizSpark but miner works already about 2 weeks at little less that 7K (after 0.13) but while all other computers with same setup find block just fine - azure don't yet find any blocks at all. I don't understand which can be wrong with it. Do anyone have some ideas?
author | dr2073 |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160816t131656407z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-08-16 13:16:57 |
last_update | 2016-08-16 13:16:57 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 328 |
author_reputation | 606,835,220,241 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 833,872 |
net_rshares | 0 |
I tried this in a minning pool with 2 virtualized pc Azure ubuntu 16.04 (one with 4-core and other 2-cores) but i couldnt get a single 0.000000001 Monero (one of the easyest coin), I think that the only way is to use a azure Pc with a great GPU (but his is not free). 150 HS is not enought. But thanks it was a great experience. 
author | nachocarballeda |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20180521t204503169z |
category | mining |
json_metadata | {"tags":["mining"],"image":["https://steemitimages.com/DQmdPAJJcR3p5ZgTnGtXqwjhCo61NhgmVQErYQZxKD5qbuQ/ratonenado_monero.png"],"app":"steemit/0.1"} |
created | 2018-05-21 20:45:03 |
last_update | 2018-05-21 20:45:03 |
depth | 1 |
children | 0 |
last_payout | 2018-05-28 20:45:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 457 |
author_reputation | 1,134,914,992 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 56,953,304 |
net_rshares | 0 |
Nice Share! Will try this out some time :)
author | tommyp7485 |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160722t210122063z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-22 21:01:27 |
last_update | 2016-07-22 21:01:27 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 42 |
author_reputation | 39,413,177,389 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 282,103 |
net_rshares | 400,885,258 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cloh76 | 0 | 400,885,258 | 100% |
Interesting and informative post, thank you.
author | zly |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160724t010234209z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-24 01:02:36 |
last_update | 2016-07-24 01:02:36 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 44 |
author_reputation | 17,151,623,976 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 310,141 |
net_rshares | 43,201,880 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
outdoors | 0 | 43,201,880 | 100% |
Thanks for info
author | zuarzalfa |
---|---|
permlink | re-cloh76-guide-steem-mining-for-free-using-microsoft-azure-20160723t065319985z |
category | mining |
json_metadata | {"tags":["mining"]} |
created | 2016-07-23 06:53:30 |
last_update | 2016-07-23 06:53:30 |
depth | 1 |
children | 0 |
last_payout | 2016-08-25 07:13:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 6,280,842,388 |
root_title | "[Guide] Steem Mining for FREE using Microsoft Azure" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 291,209 |
net_rshares | 0 |