Bitcoin Forum
May 28, 2024, 07:57:00 PM *
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 »
41  Bitcoin / Mining support / Re: Overclock S9i with OEM Bitman Firmware on: February 21, 2022, 06:05:24 PM
or download my FREE version for S9, which is precisely based on the multi-option OEM, with the unlocking of frequency and voltage;)
42  Bitcoin / Mining software (miners) / Re: Will the real Vnish please step up. on: February 19, 2022, 10:19:56 AM
depending on the environment, for an S17/S17Pro, you can easily obtain +10th without risk for the miner with the stock cooling ...

All custom firmware will allow it, you just have to find the one that suits you best, functionality, dev costs, they range from 3% to 0.9% depending on the firmware and models)
43  Bitcoin / Mining software (miners) / Re: 19 Series Overclock firmware. 170t on pro in liquid on: February 16, 2022, 06:19:25 PM
CG has a lot of features... don't talk nonsense please Wink do you work for him? Grin
44  Bitcoin / Mining support / Re: How to turn On BLADECENTER PSU 2880W on: February 16, 2022, 06:17:13 PM
hi, i make litle picture, just see, is easy Wink

https://imgur.com/a/7IQB3VM
45  Bitcoin / Mining software (miners) / Re: Braiins OS & Braiins OS+ custom ASIC firmware: optimize performance & efficiency on: January 31, 2022, 03:56:39 PM
To each these ideas, when they criticize me, I check the accuracy, and if this is true, I question myself! but yeah ... I also get criticized for "hacking" or not respecting the GPL ... even though my mod (modest) is like opensource, because I don't modify the cgminer code, I only call a existing function !!! and he doesn't even bother to download (free) and check ... but keep criticizing ...

unfortunately that's not how the world has moved forward... there are more or less rotten developers, but I respect them all! Kano including Smiley
46  Bitcoin / Mining software (miners) / Re: How do custom firmware collect their fees. on: January 30, 2022, 05:53:07 PM
Come on, I'm nice, I'll do the work for you, here is the code that allows the S9 to define a frequency and a voltage! you will have no trouble deciphering this, and as you can see, I am not touching cgminer! this code is compatible with all S9 and S9 I/J version with multioption firmware.


Code:
#!/bin/sh

PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DAEMON=/usr/bin/bmminer
NAME=bmminer
DESC="bmminer daemon"
CONFIG_NAME="/config/asic-freq.config"
set -e
#set -x
test -x "$DAEMON" || exit 0

do_start() {
gateway=$(route -n | grep 'UG[ \t]' | awk '{print $2}')
if [ x"" == x"$gateway" ]; then
gateway="192.168.1.1"
fi
if [ "`ping -w 1 -c 1 $gateway | grep "100%" >/dev/null`" ]; then                                                   
prs=1                                               
echo "$gateway is Not reachable"                             
else                                               
    prs=0
echo "$gateway is reachable"
fi                   
sleep 5s
if [ -z  "`lsmod | grep bitmain_axi`"  ]; then
echo "No bitmain_axi.ko"
#insmod /lib/modules/`uname -r`/kernel/drivers/bitmain/bitmain-axi.ko
        insmod /lib/modules/bitmain_axi.ko
                memory_size=`awk '/MemTotal/{total=$2}END{print total}' /proc/meminfo`
                echo memory_size = $memory_size
                if [ $memory_size -gt 1000000 ]; then
                    echo "fpga_mem_offset_addr=0x3F000000"
    insmod /lib/modules/fpga_mem_driver.ko fpga_mem_offset_addr=0x3F000000
                elif [ $memory_size -lt 1000000 -a  $memory_size -gt 400000 ]; then
                    echo "fpga_mem_offset_addr=0x1F000000"
    insmod /lib/modules/fpga_mem_driver.ko fpga_mem_offset_addr=0x1F000000
                else
                    echo "fpga_mem_offset_addr=0x0F000000"
    insmod /lib/modules/fpga_mem_driver.ko fpga_mem_offset_addr=0x0F000000
                fi
else
echo "Have bitmain-axi"
fi
killall -9 bmminer || true
    killall -9 single-board-test || true
    /usr/bin/bmminer --fixed-freq --no-pre-heat --version-file /usr/bin/compile_time --api-listen --default-config /config/bmminer.conf
    single-board-test&
}

do_stop() {
        killall -9 bmminer || true
        killall -9 single-board-test || true
}
case "$1" in
  start)
        echo -n "Starting $DESC: "
do_start
        echo "$NAME."
        ;;
  stop)
        echo -n "Stopping $DESC: "
do_stop
        echo "$NAME."
        ;;
  restart|force-reload)
        echo -n "Restarting $DESC: "
        do_stop
        do_start
        echo "$NAME."
        ;;
  *)
        N=/etc/init.d/$NAME
        echo "Usage: $N {start|stop|restart|force-reload}" >&2
        exit 1
        ;;
esac

exit 0


47  Bitcoin / Mining software (miners) / Re: How do custom firmware collect their fees. on: January 30, 2022, 05:45:25 PM
With all due respect, if you would just take the trouble to take 5min to download my mod for S9, and look inside... you would find that I didn't modify ANYTHING! but I only call functions ALREADY PRESENT in the cgminer (bmminer), but that, I have already said Smiley
48  Bitcoin / Mining software (miners) / Re: How do custom firmware collect their fees. on: January 28, 2022, 06:26:52 PM
honestly, the devfee are sold to give help, and improve the project ... but in reality it is not so, the priority is to fill the pockets !!!

I am the only one to provide real support ... the people who use my firmware will confirm it. Even on SERIES 9, on which I earn absolutely nothing, I help.

I see some users who come to see me because they have absolutely no support from another custom and moreover they are too expensive.

In any case, blocking devfees will never kill a firmware, the man is always empty of money! so there will always be developers trying to make money! and therefore make firmware whatever it costs.
49  Local / Mining et Hardware / Re: Avis sur achat Antminer sur LBC on: January 20, 2022, 04:49:36 PM
+1 , a ce prix la de plus ... sa pue...
50  Bitcoin / Mining software (miners) / Re: S17 / S17E / T17+ / T17 custom firmware - Free Download only 1% fee on: December 27, 2021, 10:12:12 PM
T17E firmware is now available Wink
51  Local / Petites annonces / Re: Échangez Bitcoin contre des cartes-cadeaux Amazon on: December 26, 2021, 12:44:42 AM
Oui,

https://www.bitrefill.com

il est connu maintenant lol
52  Economy / Collectibles / Re: [FREE RAFFLE] My First Capital, PCGS PR69DCAM on: December 26, 2021, 12:34:09 AM
Table 2 - 6

Merry Christmas !! thanks !!! Cheesy
53  Bitcoin / Hardware / Re: Hacking the S7 - improving efficiency through minor hardware manipulation on: December 26, 2021, 12:28:42 AM
Floating at my home Cheesy

https://easyupload.io/7r7ak1
54  Bitcoin / Mining software (miners) / Re: Antminer Hack S9 /S15 / S17 / Sx aso. SSH and so on for free on: December 26, 2021, 12:22:42 AM
19 series containe Efuse  Grin
55  Bitcoin / Mining software (miners) / Re: HIVEOS Client firmware on S9k Antminers (?) on: December 26, 2021, 12:18:15 AM
hi, the S9K have same system than lot of bitmain miners... so , i have the SD unlocker if you want , just use "17 series unlocker" on my website https://www.djayos.com, use same methode than S17 Wink
56  Bitcoin / Mining support / Re: S19 PRO No HASH DOA ? on: December 07, 2021, 10:00:56 PM
for me, the problem do not come by psu ... i thinks psu is good (control board power up) ...

So , see kernel, but the kernel is very strange ... possible needed make update !

if the psu is dead, the kernel log see all hashboard, but "power lost" ... on this is not the problem, so i thinks psu is good .


Try to make update firmware (bitmain.com)
57  Bitcoin / Mining support / Re: APW9 vs. APW9+ on: December 07, 2021, 09:55:13 PM
Hi , sorry , i uploaded again Wink

https://easyupload.io/412gv8

if you want quick reply, please do not hesitate to visit my website and join my discord , i reply at maximum of two hours Wink
58  Bitcoin / Mining support / Re: T17/S17 malfunction: cases, solutions, remedies, RMA history on: October 19, 2021, 09:11:07 PM
Yes, without any problem, just swap original fan by slower fan, i make 8000trs fan, and run good !!! (underclock to, on 35 th)
59  Bitcoin / Mining software (miners) / Re: T17/S17 Firmware on: October 03, 2021, 01:24:59 PM
we could discuss the subject for 100 years, that the outcome will always be the same

At this point we should respect Kano as such, for the tremendous work he has done so far, and ignore the rest Smiley

As Taserz says, everyone violates the license, and especially the manufacturer !!!
60  Bitcoin / Mining support / Re: Antminer Hashboard Testing Software ? on: October 02, 2021, 11:31:04 AM
hi, join my discord, i give you Wink
Pages: « 1 2 [3] 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!