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 - 5chdn

Pages: 1 ... 22 23 24 25 26 27 28 [29] 30 31 32 33
421
Deutsch (German) / Re: Mining Pools [Liste]
« on: November 11, 2013, 11:15:41 am »

422
Marketplace / WTB PTS @ 0.65 LTC // closed
« on: November 11, 2013, 09:31:58 am »
WTB 1000 PTS @ 0.65 LTC = 650 LTC
WTB 500 PTS @ 0.60 LTC = 300 LTC
WTB 100 PTS @ 0.55 LTC = 55 LTC
WTB 50 PTS @ 0.50 LTC = 25 LTC
WTB 10 PTS @ 0.45 LTC = 4.5 LTC
sold

Or make an offer, trading any amount up to 1000 LTC volume available!

Escrow only, I pay fees.

423
General Discussion / Re: ProtoShares Market Cap Over $1 Million
« on: November 11, 2013, 08:45:09 am »
1.4 Million!

Code: [Select]
09:44:11        @donschoe | .pts
09:44:11       +sternburg | Protoshares Network Block: 12246, Difficulty: 0.00012097, Reward: 36.75459, Minted: 539591.38114.
09:44:20        @donschoe | .conv 539591.38114
09:44:21       +sternburg | Converter: 539591.38114 PTS = 4586.52674 BTC = 385098.80266 LTC = 1422281.94 USD = 1090673.55 EUR.

424
General Discussion / Re: CHAIN FORK COMING....
« on: November 11, 2013, 08:43:58 am »
How can i check network hash?

The bot on IRC can calculate that
Code: [Select]
09:16:12       +sternburg | Protoshares Difficulty: 0.00012097, next change in 3885 blocks (2.17 weeks). Current blocktime: 5.64 minutes, Network hashrate: 92122 hashs/min.

425
Edit new: I think I figured it out, I install miniupnpc and its working now. Thanks

Ah, yes, either install miniupnpc or change the line with make into:

Code: [Select]
USE_UPNP= make -f makefile.unix

426
Could I trouble someone for the commands to pull down the source and compile on Ubuntu? (Sorry, linux noob) Thanks.  8)

(EDIT: I did try to pull down the master.zip but could not find install instructions in there...)

try this guide http://www.peercointalk.org/index.php?topic=798.0
and replace xolominer with ptsminer https://github.com/thbaumbach/ptsminer

I wrote this crude restart_ptsminer.sh script that runs once a minute on cron to keep it going.

Just put the miner in an endless loop.

Code: [Select]
#!/bin/bash
while true; do
    ./ptsminer [-options]
    sleep 10
done


Yup, that works too but my way I don't need a shell open (retrospective lame benefit..I just didn't think of the endless loop at the time).

I'm running them inside a screen session, so no problem with that :)

Confirmations are painfully slow now that the blocks are lasting longer.

Current confirmation time is between 10 and 14 hours due to slow blocktime varying between 5 and 7 minutes :(

Anyone know why I am paid 0.00 PTS on all these early shares?  Also, I have found nearly 1000 shares but only see a fraction of that here.  Address:  PqJVtLE1syCEXRhBsHntpotEj5oMFEfCTA
Did you reach the 1 PTS payout threshold?

Like the user above, I have the same issue. And I have been paid ZERO on all confirmed. not even 0.0001PTS like the user above. Anyone else having the same issue?
Did you reach the 1 PTS payout threshold?

I also have a night, not a single payment
Did you reach the 1 PTS payout threshold?

428
If you have the chance to upgrade, install Debian 7 or Ubuntu 12.4.

Debian 5 is just... very old and you will have trouble installing dependecies :)

429
I wrote this crude restart_ptsminer.sh script that runs once a minute on cron to keep it going.

Just put the miner in an endless loop.

Code: [Select]
#!/bin/bash
while true; do
    ./ptsminer [-options]
    sleep 10
done

[STATS] 2013-11-10 19:59:19 | hashmeter 5.841406 hashs/min

Is that slow?

Yes, time to find a block mining solo: 61.77 days, Turnout: 0.6 PTS/day.

430
Adapted from my post here: http://www.peercointalk.org/index.php?topic=798.0

Hint: Dont use Debian Squeeze.

Debian 7.2.0 Wheezy x64

Code: [Select]
# Get root access
su -

# Update & upgrade repositories and install build tools
apt-get update && apt-get upgrade
apt-get install build-essential git

# Install ptsminer dependencies
apt-get install libssl-dev libgmp3-dev libboost-chrono1.49-dev libboost-filesystem1.49-dev libboost-system1.49-dev libboost-program-options1.49-dev libboost-thread1.49-dev

# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

# Pull the ptsminer source from github
cd
git clone https://github.com/thbaumbach/ptsminer.git ptsminer

# Go to source and compile the code
cd ptsminer/src
make -f makefile.unix

# Start mining
./ptsminer -poolip=ptsmine.beeeeer.org -poolport=1337 -poolpassword=[change-me] -pooluser=[your-payout-address] -genproclimit=[threads-to-use]

Debian 6.0.8 Squeeze x64

Code: [Select]
# Get root access
su -

# Update & upgrade repositories and install build tools
apt-get update && apt-get upgrade
apt-get install build-essential git

# Install ptsminer dependencies
apt-get install libssl-dev libgmp3-dev

# Get boost source, compile and install
cd
wget http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.gz
tar -xzvf boost_1_54_0.tar.gz
cd boost_1_54_0
./bootstrap.sh --prefix=/usr/local
./b2 install --with=all

# Tell your system where to find boost
export BOOST_INCLUDE_PATH="/usr/local/include/boost"
export BOOST_LIB_PATH="/usr/local/lib"
ldconfig

# Get db4.8 source, compile and install
wget http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz
tar -xzvf db-4.8.30.NC.tar.gz
cd db-4.8.30.NC/build_unix
../dist/configure --enable-cxx
make
make install

# Tell your system where to find db4.8
export BDB_INCLUDE_PATH="/usr/local/BerkeleyDB.4.8/include"
export BDB_LIB_PATH="/usr/local/BerkeleyDB.4.8/lib"
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb-4.8.so /usr/lib/libdb-4.8.so
sudo ln -s /usr/local/BerkeleyDB.4.8/lib/libdb_cxx-4.8.so /usr/lib/libdb_cxx-4.8.so

# Pull the ptsminer source from github
cd
git clone https://github.com/thbaumbach/ptsminer.git ptsminer

# Go to source and compile the code
cd ptsminer/src
make -f makefile.unix

# Start mining
./ptsminer -poolip=ptsmine.beeeeer.org -poolport=1337 -poolpassword=[change-me] -pooluser=[your-payout-address] -genproclimit=[threads-to-use]

1K6Xaof6oJJrEd46c1263KULLWMAGMCYhZ
PcDLYukq5RtKyRCeC1Gv5VhAJh88ykzfka

431
BitShares PTS / Re: incorrect proof of work
« on: November 11, 2013, 12:23:58 am »
If you have the latest client you dont have to worry.

This log message only says there are blocks out there which can not be validated (from the old abandoned chain).

433
I c, thats good.  How often is the payments?  Has it gone down at all?

Payments are processed for each block after 120 confirmations.

This server was never down and never will be.

I know this pool for quite some time now (used to mine XPM there) and it has the best infrastructure, including DDOS protection, payouts are pretty high and the owner (xolo) is some real dedicated guy (after his daughter went to bed).

any more questions? :p

434
General Discussion / Re: Price rising too fast
« on: November 10, 2013, 11:41:59 pm »
I just wonder where they'll appear.

@ 1.0 BTC  8)

435
is this auto pay or manual payout?

its an auto payout script.

ok after compiling i get this error
Code: [Select]
make: *** [obj/net.o] Error 1

please show more output. the last line only says there was an error, not which one.

Pages: 1 ... 22 23 24 25 26 27 28 [29] 30 31 32 33