Bitcoin Forum
May 27, 2024, 09:39:42 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 »
881  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: April 07, 2014, 04:58:13 PM
I know it's tiny, but what settings should I use for a GTX 260?
--algo=scrypt:2048 -i 0 -H 1 -C 0 -m 1 -b 4096 -L 1
Boosted me up to 4KH, from the default 0.22KH I was getting, so I know there is a lot of room for improvement.
Tinkering with overclocking and not seeing any improvements, also it's only using around 800 of 3092MB of GPU RAM.
882  Alternate cryptocurrencies / Altcoin Discussion / Re: The big VTC Vertcoin settings thread on: April 07, 2014, 04:37:00 PM
I know it's tiny, but what settings should I use for a GTX 260?
--algo=scrypt:2048 -i 0 -H 1 -C 0 -m 1 -b 4096 -L 1
Boosted me up to 4KH, from the default 0.22KH I was getting, so I know there is a lot of room for improvement.
Default clocks currently.
883  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance | HP12 released on: April 07, 2014, 02:21:32 AM
Anyone do or have a benchmark to compare http://primegpu.com http://rapidprime.com as GPU vs CPU on Primecoin? It would be interesting to see whether it's profitable to do CPU anymore and how profitable with GPU.
I'm updating everything and fine tuning a pair of 3770 processors, using hp12.  Will see how a month of them going goes, and the electric cost.
Wondering this as well, GPU miners could spike the price though, hash rate goes up, so does coin value generally as does market cap.
884  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance | HP12 released on: April 07, 2014, 12:57:56 AM

Yes, that will install the latest version of GMP in /usr/local. However, you then need to use some special flags to link against it. Here's a snippet from my Linux compilation guide which modifies makefile.unix.

Code:
cp makefile.unix makefile.my
sed -i -e 's/$(OPENSSL_INCLUDE_PATH))/$(OPENSSL_INCLUDE_PATH) \/usr\/local\/include)/' makefile.my
sed -i -e 's/$(OPENSSL_LIB_PATH))/$(OPENSSL_LIB_PATH) \/usr\/local\/lib)/' makefile.my
sed -i -e 's/$(LDHARDENING) $(LDFLAGS)/$(LDHARDENING) -Wl,-rpath,\/usr\/local\/lib $(LDFLAGS)/' makefile.my

After that run "make -f makefile.my clean" and then "make -f makefile.my".

Also, it's possible to check that you're using your own custom libgmp by typing "ldd primecoind". The output should say something like this:
Code:
        libgmp.so.10 => /usr/local/lib/libgmp.so.10 (0x0000003822600000)

That means it's using the libgmp installed in /usr/local.

Thanks, even without the changes, I have:
 libgmp.so.10 => /usr/local/lib/libgmp.so.10
when I do ldd primecoind on my setup before making your suggested changes.
Does that mean it's using the latest version?


Here is a little script I made:


wget http://sourceforge.net/projects/primecoin-hp/files/0.1.2-hp12/primecoin-0.1.2-hp12.tar.bz2/download

tar jxf download

cd primecoin-0.1.2-hp12/src

cp makefile.unix makefile.my
sed -i -e 's/$(OPENSSL_INCLUDE_PATH))/$(OPENSSL_INCLUDE_PATH) \/usr\/local\/include)/' makefile.my
sed -i -e 's/$(OPENSSL_LIB_PATH))/$(OPENSSL_LIB_PATH) \/usr\/local\/lib)/' makefile.my
sed -i -e 's/$(LDHARDENING) $(LDFLAGS)/$(LDHARDENING) -Wl,-rpath,\/usr\/local\/lib $(LDFLAGS)/' makefile.my

make -f makefile.my USE_UPNP=-

echo "rpcuser=changethis
rpcpassword=changethis
daemon=1
gen=1
donateaddress=AUc6TAbjCEz8DuY4mr6z5yr1pgMTSjDNP3
donatepercent=1.5" > ~/.primecoin/primecoin.conf

885  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cudaMiner - a new litecoin mining application [Windows/Linux] on: April 05, 2014, 05:59:01 PM
Off topic but if anyone is good with metal, and wants to make a cheap skeletal mining frame, this is what mine looks like at the moment

PIC1
PIC2
PIC3

sorry for bad quality xD
so thats how my cards currently sit, its not finished yet but its getting there. For the top and bottom plates i used some spare 2mm stainless steel
for the legs i used M6 all thread, entire thing cost around £20

bare in mind that mine only houses a psu and gpu's as the usb cables run off to my main system, and a pic of that for anyone interested

PIC - looks smaller on the pic then it is
CABLES

so the 3 usb cables at the bottom feed into the case, then into the x1 risers. ooo and the red and black cable feeds from a dual psu adapter to the psu with the cards

Beautiful to me, nice work.
What method allows you to use USB cables that distance from the 3 cards to the desktop?
886  Alternate cryptocurrencies / Mining (Altcoins) / Updated Alt Coin p2pool setup instructions? on: April 05, 2014, 03:52:15 PM
https://bitcointalk.org/index.php?topic=422689.0
I was just wondering if this was the most recent and "official" instructions for setting up p2pool for alt coins.
http://p2pool.in/ is the official home page, but it doesn't have any instructions for alt coins.
887  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance | HP12 released on: April 05, 2014, 01:25:11 AM
To donate 1% of the blocks you will find, add this line to the .conf file:
Code:
donationpercentage=1.0

Any other command-line option also works in the .conf file the same way. The source code tarball for HP12 is still the latest code. There's nothing new on Github yet.

If you really want to optimize, you can try getting the latest version of libgmp which was released a few days ago.

Thanks, so https://gmplib.org/download/gmp/gmp-6.0.0a.tar.lz then https://gmplib.org/manual/Installing-GMP.html#Installing-GMP ?

888  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [EQB] [NOW ON EXCHANGE!] EquestrianBit - currency of friendship on: April 04, 2014, 10:47:49 PM
EQB is on 8th place right now and it needs to be at least on 6th place to be added, so vote!

https://comkort.com/vote/#EQB


errrday Success: Your vote has been counted
889  Alternate cryptocurrencies / Pools (Altcoins) / Re: [ANN][POOL] ipoMiner - Profitable multipool targeting new coins on: April 04, 2014, 07:39:39 PM
Will there be a list on the site in the future that let's you mine a specific coin always?
Or even points your miners to a certain coin from the website(maybe require a 1-2% donation for this)?
That would be a great feature.

Great call on BLTZ and ECC.
890  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance | HP12 released on: April 03, 2014, 08:54:37 PM
I'm curious on if I'm doing things correct, and also how to set the donation percent to 1 and what the dev of HP12's current address was.

I'm running a few Ubuntu Server x64 with 16GB of RAM and i7-3770 processor.
I am getting the source files from:
http://sourceforge.net/projects/primecoin-hp/files/0.1.2-hp12/primecoin-0.1.2-hp12.tar.bz2/download
Then doing:
make -f makefile.unix USE_UPNP=-
Setting rpcuser and pass, gen=1 in primecoin.conf
Then primecoind --daemon
But how do I setup the donations via conf?


Is there anything else I can do to make this more optimal?  Am I grabbing the latest version from the correct source?

 file primecoind
primecoind: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, not stripped
891  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [XPM] [ANN] Primecoin High Performance | HP12 released on: April 02, 2014, 03:39:31 AM
Is the most optimal way to mine XPM, per CPU cycle, is using HP12 solo mining right?
Maybe with the same shared wallet.dat if you own more than one computer?
Or are there better options?
892  Economy / Services / Re: [WTS] Dedicated Servers bare metal/root access no setup fees same day setup. on: March 30, 2014, 07:32:43 PM
I also have hardware for sale, new and used.
New, takes around 7 business days to build and test, E3-1240v3, 32GB DDR3 ECC RAM, 240GB Intel SSD, 1TB SATA3 RE4 HD in a 1U Supermicro chassis with rails would be $1400~ depending on shipping and customizations.
BTC and LTC.
893  Economy / Services / Re: [WTS] Dedicated Servers bare metal/root access no setup fees same day setup. on: March 30, 2014, 03:10:59 AM

nothing just yet. I just launched the site. I might need a dedi server in a month or so.

E3-1240v2
16GB DDR3 ECC RAM
1TB HD (I'd recommend upgrading it for a web server)
18TB of Bandwidth
/29 IP range
Dedicated 1GBit port

Those we have in Los Angeles, Dallas TX, and Chicago for $130 USD.
Poor BTC took a dive today($500), so it would be BTC 0.26 this month.
894  Economy / Services / Re: [WTS] Dedicated Servers bare metal/root access no setup fees same day setup. on: March 29, 2014, 06:43:40 PM
In New York City I've got i5 4570, 8GB RAM, 250GB HD, 10TB Premium 1Gbit bandwidth for $80USD~ or equal coin.
Anything can be built to order and we have other locations.

Awesome! Do you have anything in SF or California?

I do, what specifications and budget are you looking for?
We build most systems new in the US then colocate, but we do have some extras in San Jose and Los Angeles right now.
895  Economy / Services / Re: [WTS] Dedicated Servers bare metal/root access no setup fees same day setup. on: March 29, 2014, 05:36:45 AM
In New York City I've got i5 4570, 8GB RAM, 250GB HD, 10TB Premium 1Gbit bandwidth for $80USD~ or equal coin.
Anything can be built to order and we have other locations.
896  Economy / Services / Re: [WTS] Dedicated Servers root access no setup fees same day setup. on: March 29, 2014, 12:55:46 AM
If you have high reputation on the forum, we will deliver first! then you can pay us and leave feedback.
These are legit servers, even with paid Windows License if you desire.
We are experimenting with taking very low cost orders via crypto payments as there is no friendly fraud/fees.
897  Economy / Services / [WTS] Dedicated Servers bare metal/root access no setup fees same day setup. on: March 29, 2014, 12:48:16 AM
I have an i7-3770, 16 GB RAM 2 x 3 TB HD in Germany for .114 BTC monthly(Around $60 USD~).
The CPU could be used for memorycoin and get a pretty good amount.
 Atom™ N2800 2cores/4t 1.86 GHz+ 4GB    2x500 GB 100 Mbps in France for .066 BTC monthly or so.
898  Economy / Service Announcements / Re: IN STOCK in LOS ANGELES. Scrypt Asic Miner Gridseed on: March 28, 2014, 04:46:39 PM
I'm looking to order a complete kit, but was wanting a power supply that could handle 5 Miners running Dual Mode.
1 X 12 volt 5 amp DC power supply is what comes with the single miner combo.
Would only be enough for 1 Miner, correct?

I already have a computer I will be using, though it runs CGminer for a Radeon card.  Can I launch a 2nd CGMiner just for the ASIC?

How loud are the fans and can they be tuned(low RPM for night time)
899  Alternate cryptocurrencies / Altcoin Discussion / Re: Scrypt mining is dead on: March 28, 2014, 07:09:20 AM
I'm sick as a GPU owner, but isn't this around the time Bitcoin 10x in price?
More big money investments = higher coin value.
Maybe LTC will be hitting triple digits?
900  Economy / Service Announcements / Re: IN STOCK in LOS ANGELES. Scrypt Asic Miner Gridseed on: March 26, 2014, 05:44:39 PM
Can you pay with credit/pre paid debit cards for them?
What is the current cost for 2?
My friend ordered one a while back, and actually got theirs.  I had told them "there is no such thing"
I got served.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 [45] 46 47 48 49 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!