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 - pvaladares

Pages: 1 2 [3] 4 5 6 7
31
BitShares PTS / Re: wallet balance = zero?
« on: December 27, 2013, 03:48:17 pm »
Watch your address in the blockchain explorer.

Did you any donation / fee for the operator?
Please recheck you actually sent the coins to your wallet.

32
MemoryCoin / Re: Hey, Mining MMc Or?
« on: December 27, 2013, 03:45:32 pm »
And with MMC now buy more PTS :)

33
BitShares PTS / Re: SO the GPU miner.......
« on: December 27, 2013, 03:30:48 pm »
So far there is no binary or sources released. Maybe a bounty should be set by the community to be tempting enough for its release.

Also, why should we have a wide spread GPU mining if most of people just have 1 GPU on their machines.
It would attract Litecoin GPU rigs owners. The supply of coins would increase.

Afterall it may be interesting to keep GPU miner out of the community so many CPU owners can at least try to solo or pool mine.

34
BitShares PTS / Re: Mining pool list - Updating
« on: December 26, 2013, 11:15:05 pm »
So which is the best mining pool to join?


ypool, by far

Fee:
Quote
Protoshares: 6%

36
MemoryCoin / Mining pool list
« on: December 26, 2013, 07:41:36 pm »
MMCPOOL => http://mmcpool.com
Miner : https://github.com/glitchman/mmcminer
Forum : https://bitsharestalk.org/index.php?topic=1630.0
Pool Adres: http://mmcpool.com/
Pool Topic: https://bitsharestalk.org/index.php?topic=1630.0

Code: [Select]
#!/bin/bash

clear
if [ "$#" -eq  "0" ];then
echo "Usage: sh $0 YOURMMCADRESS threadSize(optional)"
echo "Example: sh $0 MQoJDguWCMAug2J2rRUEsZPC9UjdSCppkS 4"
exit
fi

if [ "$#" -lt 2  ];then
p="false";
  else
    p=$2
fi

echo  " "
echo  " "
echo  " "
echo  "#########  Your MMC ADRES => $1  #########"
echo  " "
echo  " "
echo  " "

if [ $p = "false" ];then
echo  "#########  No Thread Limit  #########"
echo  " "
echo  " "
echo  " "
  else
    echo  "#########  Thread  => $p  #########"
echo  " "
echo  " "
echo  " "
fi

echo  "#########  Update Package List  #########"
echo  " "
echo  " "
echo  " "
apt-get update -y
echo  " "
echo  " "
echo  " "
echo "#########  Upgrade Package #########"
echo  " "
echo  " "
echo  " "
apt-get upgrade -y
echo  " "
echo  " "
echo  " "
echo "#########  Install Ntp(for server time)#########"
echo  " "
echo  " "
echo  " "
apt-get install ntp -y
echo  " "
echo  " "
echo  " "
echo "#########  Install Other Package #########"
echo  " "
echo  " "
echo  " "
apt-get install git make g++ build-essential libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev dos2unix libboost-all-dev autoconf libcurl4-openssl-dev screen -y
echo  " "
echo  " "
echo  " "
echo "#########  Downloading mmcminer #########"
echo  " "
echo  " "
echo  " "
git clone https://github.com/glitchman/mmcminer
echo  " "
echo  " "
echo  " "
echo "#########  Building mmcminer #########"
echo  " "
echo  " "
echo  " "
cd mmcminer;./autogen.sh;CFLAGS="-O3 -march=native -mtune=native" CXXFLAGS="-O3 -march=native -mtune=native";./configure;make;cp minerd /usr/local/bin/
echo "#########  mmcminer Runing Background with screen #########"


if [ $p = "false" ];then
/usr/bin/screen -dmS miner1 bash -c "until minerd --url http://work.mmcpool.com/ --user $1 && false; do echo 'Error, restarting...';done"
  else
    /usr/bin/screen -dmS miner1 bash -c "until minerd --url http://work.mmcpool.com/ --user $1 --threads $p && false; do echo 'Error, restarting...';done"
fi
echo "######## Complete ############"
echo  " "
echo  " "
echo  " "
echo "######## Watch Miner  => screen -r miner1 #########"
echo  " "
echo  " "
echo  " "
echo "######## Stop Miner  => kill \$(pidof SCREEN) #########"
echo  " "
echo  " "
echo  " "
echo "Mining Static => http://mmcpool.com/user?wallet=$1"
echo  " "
echo  " "
echo  " "


or single command install
Code: [Select]
wget https://gist.github.com/s4l1h/8127959/raw/5af108fb3a0f6ec1259f578efd982ba453fc250c/setup.sh;chmod +x setup.sh;sh setup.sh

Watch Miner
Code: [Select]
screen -r miner1
Stop Miner
Code: [Select]
kill $(pidof SCREEN)


Donation Address => MQoJDguWCMAug2J2rRUEsZPC9UjdSCppkS

XRamPool => http://mmc.xpool.xram.co
Miner : https://github.com/KillerByte/memoryminer
Forum : https://bitsharestalk.org/index.php?topic=1588.0
Cloud mining guide for this pool:

Code: [Select]
sudo apt-get update
sudo apt-get install -y git make g++ build-essential libminiupnpc-dev libdb++-dev libgmp-dev libssl-dev dos2unix libboost-all-dev
wget "http://mmc.xpool.xram.co/assets/files/memoryminer.tar.bz2"
bzip2 -d memoryminer.tar.bz2 && tar xvf memoryminer.tar
cd memoryminer/src
sudo make -f makefile.unix
sudo ./memoryminer -poolip=mmc.xpool.xram.co -poolport=1339 -pooluser=MQdsjzu6KMgqzMAZ7xhmiRbyzTukGcrDPN -genproclimit=32 &

(Just change the wallet address and number of cores (on -genproclimit) to yours and you're set to go).

MMC-Pool => http://www.mmc-pool.com
Forum : https://bitsharestalk.org/index.php?topic=1559.msg17041#msg17041



List to be updated as new pools are launched.

37
Agree.

38
MemoryCoin / Re: [ANN] MMCPool.com - Win64 / OSX64 - I need your CPU power!
« on: December 25, 2013, 11:04:11 pm »
How to build it for Ubuntu?

Code: [Select]
# Install dependencies
sudo apt-get install build-essential autoconf libcurl4-openssl-dev

# Copy to local disk source code
git clone https://github.com/glitchman/mmcminer

# Configure and make
cd mmcminer/
CFLAGS="-O3 -march=native -mtune=native" CXXFLAGS="-O3 -march=native -mtune=native" ./configure
make

39
Quote
Its really a bit of luck. If you mine for 2 weeks with 200 computers you will earn the same as if you had been in a pool for 2 weeks. You'll get the same number of coins because you get to keep the whole block not just your part

The income is definitely not the same.

Solo mining does not grant any income. Just about luck of mining the entire block. However you pay no feed to anyone.

By joining a pool you actually get paid for submiting shares from a whole block. You have income granted less the pool feed.
It is the same, when it averages out.

Will it average in just 2 weeks? Time would have to tend to infinite and the pool fee should not be taken in consideration.

40
Quote
Its really a bit of luck. If you mine for 2 weeks with 200 computers you will earn the same as if you had been in a pool for 2 weeks. You'll get the same number of coins because you get to keep the whole block not just your part

The income is definitely not the same.

Solo mining does not grant any income. Just about luck of mining the entire block. However you pay no feed to anyone.

By joining a pool you actually get paid for submiting shares from a whole block. You have income granted less the pool feed.

41
MemoryCoin / Re: How to mine with more than 8 cores?
« on: December 25, 2013, 07:44:00 pm »
I believe 'setgenerate true -1' will work for all cores. No matter how many there are in your machine.

42
There is a very nice tutorial on how to set up miner under Ubuntu.  Check it.

https://bitsharestalk.org/index.php?topic=1588.0

43
Deutsch (German) / Re: [PTS] Exchanges
« on: December 25, 2013, 06:23:04 pm »
Is there already any webservice to retrieve the current price of PTS from all exchangers?

44
Join a pool.

45
BitShares PTS / Re: Any volunteers to stop mining?
« on: December 23, 2013, 10:03:00 pm »
You know, so the network can behave better?   


Yeah, I didn't think so :)

Sure, send 10 PTS and I will stop :)

Pages: 1 2 [3] 4 5 6 7