Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Banch

Pages: [1]
1
MemoryCoin / Re: Electrum for Memorycoin
« on: February 16, 2014, 12:55:14 am »
Hi there. This sounds like a good idea.

How much bandwidth one needs to run this?  I have a spare dedicated server with 8 core, 24gb ram on 1GBIT line.

I might be able to set some nodes.

2
MemoryCoin / Re: Munin script for tracking your wallet balance
« on: January 02, 2014, 01:41:40 pm »
Thanks emre! :) Hope it works well for you

3
MemoryCoin / Re: [MMC][CTO] donSchoe for Technical Officer
« on: January 01, 2014, 11:41:19 pm »
Voted for you!

Hope everything turns out good for you.

4
MemoryCoin / Re: Munin script for tracking your wallet balance
« on: January 01, 2014, 11:23:46 pm »
Thanks mates and thank you for adding that to the wiki site s4l1h!

5
MemoryCoin / Munin script for tracking your wallet balance
« on: January 01, 2014, 10:53:14 pm »
This script basicly just shows your current wallet status by a day/week/month/year

Heres a screenshot how mine script looks like after running it nearly two hours:
http://puu.sh/660IJ.png

This script has be tested with munin 1.4.3, 2.0.1 and 2.0.2 and working on every version.

If you don't have munin already installed you can check Digital Oceans guide  how to install munin-guide from https://www.digitalocean.com/community/articles/how-to-install-munin-on-an-ubuntu-vps


First you need to get root permissions so:
Code: [Select]
su
Then go to the correct folder
Code: [Select]
cd /usr/share/munin/plugins/
Then lets make a plugin
Code: [Select]
nano mmccoin
Here are the code for the script what you add:
Code: [Select]
#!/usr/bin/perl

if ($ARGV[0] =~ /config/i ) {
    print "graph_title mmc coins\n";
    print "graph_vlabel pieces\n";
    print "graph_category coins\n";
    print "graph_info This graph shows mmc coins\n";
    print "mmccoin.label mmc\n";
    print "mmccoin.type GAUGE\n";
    print "mmccoin.info mmc coins\n";
} else {
$k=`wget  -T 10 -qO /dev/stdout http://www.chainbrowser.com/memorycoin/address/MWydkmErZaNh2zy7PCZgmFeyTumReiKo8E/`;
@rows = split(/\n/, $k);
foreach (@rows) {
$row = $_;
if ($row =~ /Total Input Amounts: <\/span>(.*) MMC<\/div>/i ) {
$coins = $1;
}
}
print "mmccoin.value ".$coins."\n";
}

You NEED to change wallet address pointing to your wallet

After you've saved the file lets change its permissions:
Code: [Select]
chmod 755 mmccoin
Now lets change the folder again:
Code: [Select]
cd  /etc/munin/plugins/
And lets make link to point where the plugin is:
Code: [Select]
ln -s /usr/share/munin/plugins/mmccoin mmccoin
And now we should restart the munin-node:
Code: [Select]
/etc/init.d/munin-node restart
After about 5mins you should have a website showing your wallet status by day/week/month/year.
http://yourip.ip/munin should be the address

Thanks and happy new year everyone!

6
MemoryCoin / Re: [ANN] MMC.1GH.COM - GPU mining
« on: December 30, 2013, 03:06:44 pm »
There were no error message when crashed. Just noticed that clocks went down and only rebooting helps.

Using Catalyst 13.6. Any way to restart gpu / drivers after crash without rebooting whole PC?


7
MemoryCoin / Re: [ANN] MMC.1GH.COM - GPU mining
« on: December 30, 2013, 02:36:13 pm »
I got about 22hpm with 7970 with Windows Miner but then it crashed after about 5mins. Clocks went  from 1100/1150 -> 300/150... Need to reboot to see can I get it back online lol

8
MemoryCoin / Re: [ANN] MMC.1GH.COM - GPU mining
« on: December 30, 2013, 12:21:34 pm »
This seems interesting. I'll report back after the windows binaries are done to tell how 7970 hashes out.

9
MemoryCoin / Re: mmcpool.com - CLOUD MINING GUIDE!
« on: December 29, 2013, 09:39:48 pm »
Just tested this guide and it worked perfectly.

First I did this on Digital Ocean 2core server. I chose Ubuntu 13.10 and the guide worked without no problems. Getting 0.246hash/min with Digital Ocean 2-core cloud.

Then I thought to try out Dell Cloud trial and started standard.large instance with 4 cores and Ubuntu 13.04 but then the guide did not work out and could not figure what went wrong. Then made a new instance with Debian Wheezy 7.1 Server and the guide worked again perfectly. Starting mining here and I found out that this 4core instance hashed 0.462hashes/min which is double what digital ocean does but shouldnt AES-NI support boost the speed?

-Banch

Pages: [1]