Bitcoin Forum
May 29, 2024, 08:14:46 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 »
1  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sugarchain [CPU] Launching 2019/08/24 15:00 UTC on: March 11, 2020, 12:23:53 PM
We wrote an article on how to install AOCC (AMD Optimizing C / C ++ Compiler) and tested CPUminer it on a ryzen 2600 CPU.

http://cpu-mining.info/post.php?post=2

2  Alternate cryptocurrencies / Mining (Altcoins) / Re: [ANN] cpuminer-opt v3.12.6.1, open source optimized multi-algo CPU miner on: March 11, 2020, 12:21:26 PM
We wrote an article on how to install AOCC (AMD Optimizing C / C ++ Compiler) and tested CPUminer it on a ryzen 2600 CPU.

Read full article: http://cpu-mining.info/post.php?post=2



AOCC Docs - https://developer.amd.com/wp-content/resources/AOCC-2.1-Install-Guide.pdf

Install depends

Code:
sudo apt-get install -y git
sudo apt-get install -y automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev make g++
sudo apt-get install -y lib32z1-dev

download aocc-compiler-2.1.0_1_amd64.deb from https://developer.amd.com/amd-aocc/

install AOCC in Ubuntu

Code:
sudo dpkg -i aocc-compiler-2.1.0_1_amd64.deb
source /opt/AMD/aocc-compiler-2.1.0/setenv_AOCC.sh

check the installed AOCC compiler

Code:
clang -v

Tested cpuminer-opt on yespower algos.
you need to remove all algorithms from the miner, except yespower

Code:
git clone your cpuminer-opt
if error in coinfigure - use olds version cpuminer-opt

Code:
chmod +x autogen.sh
./autogen.sh || echo done

configure with AOCC

Code:
./configure --with-curl CC=clang CFLAGS="-O3 -march=native -funroll-loops -fomit-frame-pointer"

Code:
make

benchmark

Code:
./cpuminer --benchmark -a yespower -t 1

You can check this compiler on your favorite algorithm.
3  Alternate cryptocurrencies / Mining (Altcoins) / Re: An (even more) optimized version of cpuminer (pooler's cpuminer, CPU-only) on: March 11, 2020, 12:20:13 PM
We wrote an article on how to install AOCC (AMD Optimizing C / C ++ Compiler) and tested CPUminer it on a ryzen 2600 CPU.

Read full article: http://cpu-mining.info/post.php?post=2



AOCC Docs - https://developer.amd.com/wp-content/resources/AOCC-2.1-Install-Guide.pdf

Install depends

Code:
sudo apt-get install -y git
sudo apt-get install -y automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev make g++
sudo apt-get install -y lib32z1-dev

download aocc-compiler-2.1.0_1_amd64.deb from https://developer.amd.com/amd-aocc/

install AOCC in Ubuntu

Code:
sudo dpkg -i aocc-compiler-2.1.0_1_amd64.deb
source /opt/AMD/aocc-compiler-2.1.0/setenv_AOCC.sh

check the installed AOCC compiler

Code:
clang -v

Tested bitzeny cpuminer (based on pooler cpuminer)

Code:
git clone https://github.com/bitzeny/cpuminer.git bitzeny-miner
cd bitzeny-miner
./autogen.sh

configure with AOCC

Code:
./configure CC=clang CFLAGS="-O3 -march=native -funroll-loops -fomit-frame-pointer"

Code:
make

benchmark

Code:
./minerd --benchmark -a yescrypt -t 1

You can check this compiler on your favorite algorithm.
4  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Bellcoin [BELL] - ASIC & GPU Resistant coin! [PoW][YesPoWer] on: March 04, 2020, 12:01:25 PM
Released Linux miner:

https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz

cmd for download Linux miner
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz

cmd for auto - download and start mining one line CMD for Linux mining
(replace WALLET_ADDRESS!!!)
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -a yespower -o stratum+tcp://cpu-pool.com:63338 -u WALLET_ADDRESS
done' > autominer.sh && chmod +x autominer.sh && ./autominer.sh
5  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: March 04, 2020, 11:57:53 AM
Intercoin delisted from cpu-pool.com

Please minings other coin - http://cpu-pool.com/getting_started

p.s. if the coin comes to life, we will return it.
6  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Sugarchain [CPU] Launching 2019/08/24 15:00 UTC on: March 03, 2020, 01:00:19 PM
Precompiled miner for Linux64, Ubuntu - static miner for VDS mining.

Download - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz

CMD for download and unzip
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz

CMD for auto - download and start mining one line CMD for Linux mining
(replace WALLET_ADDRESS!!!)
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -a yespowersugar -o stratum+tcp://cpu-pool.com:63418 -u WALLET_ADDRESS
done' > autominer.sh && chmod +x autominer.sh && ./autominer.sh
7  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW][HARDFORK] MicroBitcoin (micro-payments protocol) on: March 03, 2020, 12:58:14 PM
Precompiled miner for Linux64, Ubuntu - static miner for VDS mining.

Download - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz

CMD for download and unzip
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz

CMD for auto - download and start mining one line CMD for Linux mining
(replace WALLET_ADDRESS!!!)
Code:
wget https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.4/Cpuminer-opt-cpu-pool-linux64.tar.gz && tar zxvf Cpuminer-opt-cpu-pool-linux64.tar.gz && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -a power2b -o stratum+tcp://cpu-pool.com:63408 -u WALLET_ADDRESS
done' > autominer.sh && chmod +x autominer.sh && ./autominer.sh
8  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🗲[ANN] [POW] LightBit - CPU mineable coin [No Premine] [Fair Launch]🗲 on: March 03, 2020, 12:44:10 PM
The original miner JayDDee. Precompiled for Linux.

Compiled for Linux64, Ubuntu - static miner for VDS mining.

Download - https://github.com/cpu-pool/cpuminer-opt-static-linux64/releases/download/v3.12.5/cpuminer-opt-linux64.tar.gz

CMD for download and unzip
Code:
wget https://github.com/cpu-pool/cpuminer-opt-static-linux64/releases/download/v3.12.5/cpuminer-opt-linux64.tar.gz && tar zxvf cpuminer-opt-linux64.tar.gz

CMD for auto - download and start mining one line CMD for Linux mining
(replace WALLET_ADDRESS!!!)
Code:
wget https://github.com/cpu-pool/cpuminer-opt-static-linux64/releases/download/v3.12.5/cpuminer-opt-linux64.tar.gz && tar zxvf cpuminer-opt-linux64.tar.gz && echo '#!/bin/sh
while [ 1 ]; do
./cpuminer -o stratum+tcp://cpu-pool.com:63398 -u WALLET_ADDRESS --algo yespower --param-n 2048 --param-r 32 --param-key "LITBpower: The number of LITB working or available for proof-of-work mini"
done' > autominer.sh && chmod +x autominer.sh && ./autominer.sh

https://github.com/JayDDee/cpuminer-opt

9  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CPU mining] Yenten v3.1.0 [YTN] [YespowerR16] [Exchange available] on: January 09, 2020, 12:50:46 PM
So, I still have an old dat file from Yenten before the first version was broken.
When I try to put my old dat file in the new Yenten wallet then it says my dat file is corrupt.
I assume all my old Yentens are lost forgood?
Anyone here can help me a little bit?  I am also willing to sell my dat file if anyone think he can open it.
There are around 40.000 YTN in it. I can sell it against BTC 0.005 (below half of current market price).
But ofcourse I prefer a way to get access to the YTN in my old dat file.
Thanks!  Smiley

if use Yenten Core version 1.3.1 old older:
1) Backup wallet.dat
2) Download old Yenten Core (https://github.com/conan-equal-newone/yenten/releases)
3) Past wallet.dat in data folder ( [WIN+R] The default directory would be %APPDATA%\Yenten)
4) Run Yenten Core and open console cmd - dumpprivkey "address" (how to - https://cryptomining-blog.com/9609-how-to-export-and-import-private-keys-from-local-wallet/)
5) Import private key in new Yenten Core

p.s. Safe your private key in txt file and copy to flash drive. This is the most reliable way to store a wallet. Private key must not be shared with anyone!
10  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][POW][HARDFORK] MicroBitcoin (micro-payments protocol) on: December 30, 2019, 11:07:11 AM
Fast MicroBitcoin pool for CPU Coin's

http://cpu-pool.com/

sample bat file
Code:
cpuminer-sse2.exe -a power2b -o stratum+tcp://cpu-pool.com:63408 -u WALLET_ADDRESS

- no registration
- payments every hour (The first payment will come in a few hours, you will have to wait)
- minimum payout amount 1.5 MBC
- On the main page stat - count MBC per 1 day from hashrate - 1000 h/s. (3951 MBC - now)



Software for start mining:
Windows Miner - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.3/Cpuminer-opt-cpu-pool-win64.zip
Wallet - https://github.com/MicroBitcoinOrg/MicroBitcoin

11  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] Bellcoin [BELL] - ASIC & GPU Resistant coin! [PoW][YesPoWer] on: December 26, 2019, 12:02:22 PM
Fast Bellcoin pool for CPU Coin's

http://cpu-pool.com/

sample bat file
Code:
cpuminer-sse2.exe -a yespower -o stratum+tcp://cpu-pool.com:63338 -u WALLET_ADDRESS

- no registration
- payments every hour (The first payment will come in a few hours, you will have to wait)
- minimum payout amount 1.5 BELL
- On the main page stat - count BELL per 1 day from hashrate - 1000 h/s.

Software for start mining:
Windows Miner - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.3/Cpuminer-opt-cpu-pool-win64.zip
Wallet - https://github.com/bellcoin-org/bellcoin/releases

12  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 09:12:58 PM
XybNLdf7DizvZxUty2HmDs5S2bGb1DyXQK - Thanks for the first block found.
sends 75 ITC
13  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 03:35:12 PM
At the moment, it turns out: 700 ITS coin from 1000 h/s

Hashrates cpu...
Code:
Athlon 200GE  3200Mhz 2xDDR4-2666    - 480 H/s
Athlon 200GE  D.O.C.P 2xDDR4-2666    - 530 H/s

AMD FX 8350 = 320 h/s
AMD FX-6300 - 450 H/s (all cores)
AMD FX 8320 (no OC) -> ~450 H/s

Ryzen 2200g - 1,3 KH/s (all cores)
Ryzen 3600 2xDDR4-3200 - 1.65kh/s
Ryzen 3600 2xDDR4-3466 - 1.74kh/s
Ryzen 3600 2xDDR4-3600 - 1.84kh/s
Ryzen 3700X DDR4-3200 - 1530 h/s
Ryzen 3700X -t 10 - 1710 h/s
RYZEN 2600X   -t 10 - 1170 h/s
Ryzen 1700 - 1400 h/s
Ryzen 1700 @3.5GHz OC    t8 1350~1450H/s  MemoryClock 3000mhz
Ryzen 1700 noOC 8 threads 1100-1300 H/s
Ryzen 2700X (stock, mem 2667MHz) -> ~1540 H/s (-t 8 + affinity)

Mac mini 2018 (Intel Core i5-8500B (Coffee Lake) 3.0GHz) - 600 h/s

Atom C2750 650H/s

G620 -> ~295 H/s (-t 2)
G620 (single channel ram) -> ~199 H/s (-t 2)
G4400 - 380 h/s
G5400 3.7GHz OC 4thread 450H/s

Xeon E3-1220 linuxmint 4 thread 680H/s
Xeon E5-2640 2.5GHz 6C12T option -t 18 Ave: 500 H/s
Xeon E5-2470 - 2 KH/s (todo: dual) (all cores)
Xeon E3-1225 linuxmint 4 thread 650H/s
Xeon x5550:   720 H/s
Xeon CPU E5530 2.4GHz -t 1: 138 H/s -t 16: 694 H/s
2x2670v2 xeon: 20threads 2800h/s
2x Xeon 2630 v4@2.20Ghz (40 cores) : 2.6 Kh
2xE5405 - ~310 h
2xE5645 - ~700h
2x2623v4 - ~1250 h
E5-2650 16core avg 2.5 KHs
Xeon Phi 7220P (SC7220P) -t 136 - 5000 h/s
Xeon Phi 7240  - 5400 h/s

i3 2120t - 105 h/s
i3-2120T OC linuxmint 4 thread 250H/s
i3-9100 (fixed @ 4.00GHz) -> ~905 H/s (-t 4)

i5-2400:   340 H/s
i5-2400S OC linuxmint 4 thread 560H/s
i5-2400(4C4T)  3.1GHz/TB3.4GHz 580~590H/s
i5-3210M 2.5GHz(Intel Turbo-boost) 248.93 H/s
i5-3470:   640.00 H/s
i5-4440 - 750 h/s
i5-6200U - 0,700 KH/s (all cores)
i5-6500  3.20GHz. OC 790~800H/s
i5-6600k, 4 threads, 865 H/s
i5-8400(6C6T)  2.8GHz/TB4.0GHz 990~1,000H/s
i5-6400 - 4thds - avg - 720 h/s

i7 960 - 8 thds -  avg -  500 h/s
i7 980 3.33 GHz (Intel Turbo-boos) 582.93 H/s
i7-2600 3.40GHz -t 6:238.48 H/s
i7 3770 = 360 h/s
i7-3770K 3.5G 4.2G-OC 6/8 530H/s
i7-4770 OC linuxmint 8 thread 720H/s
i7-4770k, 8 threads, 705 H/s
i7 4790 = 740H/s
i7-6700 - 8 threads (Windows 10 64 Bit) - 695 h/s
i7-7500U  2.70 GHz(Intel Turbo-boost) 1109H/s
i7 7700K - 8 thds -  avg -  1200 h/s
i7-8700T ES QN8J 1.6GHz 6C12T option: -t 11 1,157.10 H/s TDP: 35W
i7-8700K 3.7GHz affinity: 0x555 1.1KH/s
i7-8700k - 1,6 KH/s (all cores)

i9-7920x - 24 threads 2250 H/s
i9-9900K (fixed @ 4.40GHz) -> ~2780 H/s (-t 8 + affinity)

When will the coin appear on the exchange?
14  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 03:04:56 PM

Who is lying?
I wrote that you are right. When you send a file for find viruses, the analyze works correctly.
When you specify the link, it downloads the html file.

You're right. If you upload a file, it finds viruses (miners)
15  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 01:13:52 PM

You're right. If you upload a file, it finds viruses (miners)

If you are afraid, you can compile from source codes!

Compile Ubuntu 16.04, 18.04, 19.04

Code:
sudo apt-get install -y git
git clone https://github.com/cpu-pool/cpuminer-opt-cpupower.git
cd cpuminer-opt-cpupower
sudo apt-get install -y automake autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev make g++
sudo apt-get install -y lib32z1-dev
chmod +x build.sh
./build.sh
16  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 12:45:39 PM
And checking the miner

https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.2/Cpuminer-opt-intercoin-win64.zip
no viruses find - https://www.virustotal.com/gui/url/d20acfe81846a00cd539fda7489a99684cd68209fd32cd46bb7a76bde5de142a/detection

17  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [POW] Intercoin | CPU only - NO PREMINE on: December 25, 2019, 12:42:58 PM
Fast InterCoin pool for CPU Coin's

http://cpu-pool.com/

sample bat file
Code:
cpuminer-sse2.exe -a yespowerinter -o stratum+tcp://cpu-pool.com:63328 -u WALLET_ADDRESS

- no registration
- payments every hour (The first payment will come in a few hours, you will have to wait)
- minimum payout amount 1.5 ITC
- On the main page stat - count ITC per 1 day from hashrate - 1000 h/s.

Software for start mining:
Windows Miner - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.2/Cpuminer-opt-intercoin-win64.zip
Linux Miner - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/1.2/Cpuminer-opt-intercoin-linux64.tar.gz
Wallet - https://github.com/Intercoin-Developer/InterCoin/releases

18  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [CPU mining] Yenten v3.1.0 [YTN] [YespowerR16] [Exchange available] on: October 25, 2019, 09:28:04 AM
我在使用CPU挖矿了。
但是我的钱包里没有挖到的币。
为什么呢? 已经一天了。
在浏览器也查不到我的钱包地址。
YmJgu8D3e4piQK5hiSaBbbdLKD4YPJi9nu


http://cpu-pool.com/workers/YmJgu8D3e4piQK5hiSaBbbdLKD4YPJi9nu

 Immature: 0.55537419  Bal: 1.28438605  Paid: 0

min payout - 5.5 YTN!

p.s. we sent you a bonus - 5 YTN
19  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 🗲[ANN] [POW] LightBit - CPU mineable coin [No Premine] [Fair Launch]🗲 on: August 12, 2019, 08:09:38 PM
Performance Linux miner (static compile for Ubuntu and other linux os, debian, devuan... etc)

Download - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/v1.0/Cpuminer-opt-cpupower-linux64.tar.gz

Code:
./cpuminer -a yespowerlitb -o stratum+tcp://cpu-pool.com:63398 -u WALLET_ADDRESS

or background mining
Code:
nohup ./cpuminer -a yespowerlitb -o stratum+tcp://cpu-pool.com:63398 -u WALLET_ADDRESS  &
20  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] CPUchain Core - CPUfinex, CPU mining, Giga block, No premine! on: August 12, 2019, 08:07:23 PM
Hello, which miner use for linux? Huh Huh Roll Eyes Huh Huh Huh Cry

Performance Linux miner (static compile for Ubuntu and other linux os, debian, devuan... etc)

Download - https://github.com/cpu-pool/cpuminer-opt-cpupower/releases/download/v1.0/Cpuminer-opt-cpupower-linux64.tar.gz


img -https://imgur.com/a/7z2tfCC
Pages: [1] 2 3 4 5 6 7 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!