Bitcoin Forum
April 16, 2024, 08:38:05 PM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 [2]  All
  Print  
Author Topic: [ANN]📱Android xmrig Miner for ARM Phone CPU RandomX/CryptoNight/Argon2/AstroBWT  (Read 984 times)
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
December 24, 2021, 03:23:20 AM
Last edit: July 25, 2023, 08:24:05 AM by WarriorV
 #21

In case your phone/device does not have curl or wget, you can follow a more complex guide: http://xmrig.mine.bz/Android%20xmrig%20Miner%20for%20ARM%20CPU.pdf
1713299885
Hero Member
*
Offline Offline

Posts: 1713299885

View Profile Personal Message (Offline)

Ignore
1713299885
Reply with quote  #2

1713299885
Report to moderator
1713299885
Hero Member
*
Offline Offline

Posts: 1713299885

View Profile Personal Message (Offline)

Ignore
1713299885
Reply with quote  #2

1713299885
Report to moderator
1713299885
Hero Member
*
Offline Offline

Posts: 1713299885

View Profile Personal Message (Offline)

Ignore
1713299885
Reply with quote  #2

1713299885
Report to moderator
You can see the statistics of your reports to moderators on the "Report to moderator" pages.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1713299885
Hero Member
*
Offline Offline

Posts: 1713299885

View Profile Personal Message (Offline)

Ignore
1713299885
Reply with quote  #2

1713299885
Report to moderator
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
December 31, 2021, 08:14:15 AM
Last edit: July 25, 2023, 08:21:14 AM by WarriorV
 #22

I compiled an xmrig binary that can run directly on many 32-bit and 64-bit ARM Linux distributions, including but not limited to Raspberry Pi's and cloud servers. It also works on many 32-bit and 64-bit Android 4.1 to 7.1.2 phones and IoT devices. You can give it a try. Because it's based on the latest xmrig v6.16.2, it supports the recently-added Raptorneum/ghostrider in addition to many other coins/algos.

Install either curl or wget if necessary. Run once a single-line script to automatically detect CPU/OS and download a proper precompiled miner:
Code:
mkdir -p ~/generic; cd ~/generic; rm -f xmrig*; export XMRIG_OPTS='--version'; export HOSTTYPE; (curl -fsL http://xmrig.mine.bz/download2.shtm || wget -qO- http://xmrig.mine.bz/download2_alt.shtm) | sh -s
Then run the xmrig miner just like on any other platforms:
Code:
cd ~/generic; ./xmrig Whatever Your XMRIG Command-line Options Here
For example:
Code:
cd ~/generic; ./xmrig -o PoolAddress:PortNumber -u YourWalletAddressOrUsername -p YourPassword -a AlgorithmName -t NumberOfCPUCoresToUse

Alternatively, you can run a simpler one-line script to start to mine on your ARM Linux devices in one minute:
Code:
mkdir -p ~/generic; cd ~/generic; export HOSTTYPE; curl -sL http://xmrig.mine.bz/miner2.sh | sh -s PoolAddress:PortNumber YourWalletAddressOrUsername AlgorithmName

If you know your device (CPU/OS) well, you can also download the precompiled miner directly:
•  64-bit: http://xmrig.mine.bz/xmrigARM-generic-arm64v8.tar
•  32-bit: http://xmrig.mine.bz/xmrigARM-generic-arm32v7.tar

P.S. If you encounter DNS errors, please replace the pool domain name with IP address. For example, instead of using us.flockpool.com, please use 154.53.41.208. You can know the IP address of a domain name from https://dnslookup.online/.

More info: http://xmrig.mine.bz/#linux
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
January 29, 2022, 06:10:14 AM
Last edit: July 25, 2023, 08:31:58 AM by WarriorV
 #23

Added support for x86 and x86_64. Merged xmrig v6.16.3. Fixed some bugs of 32-bit and Raptoreum-mining. Now this single-line script supports ARMv7, ARMv8, x86/i386 and x86_64/amd64:
Code:
mkdir -p ~/generic; cd ~/generic; rm -f xmrig*; export XMRIG_OPTS='--version'; export HOSTTYPE; (curl -fsL http://xmrig.mine.bz/download2.shtm || wget -qO- http://xmrig.mine.bz/download2_alt.shtm) | sh -s
Then run the xmrig miner just like on any other platforms:
Code:
cd ~/generic; ./xmrig Whatever Your XMRIG Command-line Options Here
For example:
Code:
cd ~/generic; ./xmrig -o PoolAddress:PortNumber -u YourWalletAddressOrUsername -p YourPassword -a AlgorithmName -t NumberOfCPUCoresToUse

Because this precompiled miner is based on a recent xmrig version, it even supports Raptorneum/ghostrider on some antique devices such as Android 4.x and 32-bit x86/i386 Linux!

(More info: http://xmrig.mine.bz/#linux)

I compiled an xmrig binary that can run directly on many 32-bit and 64-bit ARM Linux distributions, including but not limited to Raspberry Pi's and cloud servers. It also works on many 32-bit and 64-bit Android 4.1 to 7.1.2 phones and IoT devices. You can give it a try. Because it's based on the latest xmrig v6.16.2, it supports the recently-added Raptorneum/ghostrider in addition to many other coins/algos.

Install either curl or wget if necessary. Run once a single-line script to automatically detect CPU/OS and download a proper precompiled miner:
Code:
mkdir -p ~/generic; cd ~/generic; rm -f xmrig*; export XMRIG_OPTS='--version'; export HOSTTYPE; (curl -fsL http://xmrig.mine.bz/download2.shtm || wget -qO- http://xmrig.mine.bz/download2_alt.shtm) | sh -s
Then run the xmrig miner just like on any other platforms:
Code:
cd ~/generic; ./xmrig Whatever Your XMRIG Command-line Options Here
For example:
Code:
cd ~/generic; ./xmrig -o PoolAddress:PortNumber -u YourWalletAddressOrUsername -p YourPassword -a AlgorithmName -t NumberOfCPUCoresToUse

Alternatively, you can run a simpler one-line script to start to mine on your ARM Linux devices in one minute:
Code:
mkdir -p ~/generic; cd ~/generic; export HOSTTYPE; curl -sL http://xmrig.mine.bz/miner2.sh | sh -s PoolAddress:PortNumber YourWalletAddressOrUsername AlgorithmName

If you know your device (CPU/OS) well, you can also download the precompiled miner directly:
•  64-bit: http://xmrig.mine.bz/xmrigARM-generic-arm64v8.tar
•  32-bit: http://xmrig.mine.bz/xmrigARM-generic-arm32v7.tar

P.S. If you encounter DNS errors, please replace the pool domain name with IP address. For example, instead of using us.flockpool.com, please use 154.53.41.208. You can know the IP address of a domain name from https://dnslookup.online/.

More info: http://xmrig.mine.bz/#linux
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
March 10, 2022, 03:06:17 AM
Last edit: July 25, 2023, 08:22:35 AM by WarriorV
 #24

This is a new/beta version that supports solo mining (with --daemon) in addition to pool mining on Android phones. It also supports HTTP API. It works on many models, but may be less stable on some newer phones. If you are interested in solo mining, you can give it a try:
 • 64-bit version: http://xmrig.mine.bz/xmrigARM-solo-arm64v8.tar  (for 64-bit ARMv8)
 • 32-bit version: http://xmrig.mine.bz/xmrigARM-solo-arm32v7.tar  (for 32-bit ARMv7)

General formats of solo mining:

Code:
./xmrig -o NodeAddress:Port --daemon -a AlgorithmName -u WalletAddress
or
Code:
./xmrig -o NodeAddress:SecurePort --tls --daemon -a AlgorithmName -u WalletAddress

An example of Monero solo mining:
Code:
./xmrig -o node.supportxmr.com:18081 --daemon -a rx/0 -u 4KxHzK********oFG1QT

In case of DNS errors, please replace domain name with IP address. For example, replace node.supportxmr.com with 46.4.52.92. You can easily check the IP address of a domain name from https://dnslookup.online/.
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
March 30, 2022, 08:23:50 AM
Last edit: July 25, 2023, 08:23:29 AM by WarriorV
 #25

Different Versions (for "experts")

1. New Android version (for Android 5.0~13.0 / support ghostrider, astrobwt/v2 and solo-mining)
   • 64-bit: http://xmrig.mine.bz/xmrigARM-phone-arm64v8.tar
   • 32-bit: http://xmrig.mine.bz/xmrigARM-phone-arm32v7.tar

2. Generic version (for Raspberry Pi, ARM Linux and Android 4.1~5.1.1  / support ghostrider, astrobwt/v2 and solo-mining)
   • 64-bit: http://xmrig.mine.bz/xmrigARM-generic-arm64v8.tar
   • 32-bit: http://xmrig.mine.bz/xmrigARM-generic-arm32v7.tar

3. Old stable version (for Android 5.0~13.0 / without ghostrider, astrobwt/v2 or solo-mining)
   • 64-bit: http://xmrig.mine.bz/xmrigARM-android-arm64v8.zip
   • 32-bit: http://xmrig.mine.bz/xmrigARM-android-arm32v7.zip

(In case of DNS errors, please replace domain name with IP address. You can easily check the IP address of a domain name on https://dnslookup.online/.)

WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
April 13, 2022, 03:36:39 AM
Last edit: July 25, 2023, 08:26:21 AM by WarriorV
 #26

The above new versions that can solo-mine DERO-HE/STARGATE (astrobwt/v2). For example:
Code:
./xmrig -a astrobwt/v2 -o daemon+wss://node.mine.bz:10100 --daemon -u YourNewDEROWalletAddress --threads=6

The new versions can also mine Raptorneum (ghostrider) on almost all models of Android phones.
devil2man
Member
**
Offline Offline

Activity: 759
Merit: 15


View Profile
April 16, 2022, 01:20:14 PM
 #27

It seems very interesting with a single line of code in termux you can already start mining from your mobile but is it true mining? Do you earn anything? Or is it just to try? Does the life of the device shorten?
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
April 18, 2022, 06:42:02 AM
 #28

It seems very interesting with a single line of code in termux you can already start mining from your mobile but is it true mining? Do you earn anything? Or is it just to try? Does the life of the device shorten?

It is true. Not kidding. Mainly for fun. It will be ok as long as the phone/device is not too hot.
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
May 17, 2022, 03:52:13 AM
Last edit: July 25, 2023, 08:32:36 AM by WarriorV
 #29


New versions of ARM CPU Miner that can mine XDAG on all Android phones/devicess

1. New Android version (for Android 5.0~13.0 / support XDAG)
   • 64-bit: http://xmrig.mine.bz/xmrigARM-phone-arm64v8.tar
   • 32-bit: http://xmrig.mine.bz/xmrigARM-phone-arm32v7.tar

2. Generic version (for Raspberry Pi, ARM Linux and Android 4.1~7.1.2 / support XDAG)
   • 64-bit: http://xmrig.mine.bz/xmrigARM-generic-arm64v8.tar
   • 32-bit: http://xmrig.mine.bz/xmrigARM-generic-arm32v7.tar
   (In case of DNS errors, please replace domain name with IP address.)

You must use a stratum-protocol pool such as stratum.xdag.org:13656 (or your own XMRIG2XDAG proxy). For example:
Code:
./xmrig -a rx/xdag -o stratum.xdag.org:13656 -u FQglVQtb60vQv2DOWEUL7yh3smtj7g1s -p SAMSUNG01 --threads=6

On phones with less than 5G RAM, the miner may crash with a "Killed" error. Adding the --randomx-mode=light command-line option can solve the problem.

WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
November 23, 2022, 08:21:15 AM
 #30

For 64-bit miners, now the dev fee/donate level can be reduced to 2% via command-line option --donate-level=2.
Plaguedeath
Hero Member
*****
Offline Offline

Activity: 658
Merit: 557



View Profile
November 29, 2022, 09:12:41 AM
 #31

XMRIG v6.18.1

Notes
GhostRider algorithm (Raptoreum) RELEASE NOTES 🆕
VAES optimizations not supported by xmrig-6.18.1-linux-x64.tar.gz due old compiler, please use xmrig-6.18.1-linux-static-x64.tar.gz instead. ⚠️
RandomX Benchmark
KawPow release notes
Stay tuned about updates, follow me on twitter https://twitter.com/xmrig_dev
Configuration wizard
Management panel for miners
For NVIDIA CUDA mining support, use any regular version with CUDA plugin.

Source: https://github.com/xmrig/xmrig/releases/tag/v6.18.1

███████████████████████
████████████████████
██████████████████
████████████████████
███▀▀▀█████████████████
███▄▄▄█████████████████
██████████████████████
██████████████████████
███████████████████████
█████████████████████
███████████████████
███████████████
████████████████████████
███████████████████████████
███████████████████████████
███████████████████████████
█████████▀▀██▀██▀▀█████████
█████████████▄█████████████
███████████████████████
████████████████████████
████████████▄█▄█████████
████████▀▀███████████
██████████████████
▀███████████████████▀
▀███████████████▀
█████████████████████████
O F F I C I A L   P A R T N E R S
▬▬▬▬▬▬▬▬▬▬
ASTON VILLA FC
BURNLEY FC
BK8?.
..PLAY NOW..
smart.phone
Newbie
*
Offline Offline

Activity: 22
Merit: 0


View Profile
December 03, 2022, 11:38:31 AM
Last edit: July 25, 2023, 08:36:07 AM by smart.phone
 #32

A single-line miner script that supports
x86/i386, x86_64/amd64, ARMv7 and ARMv8

Run once a single-line script to automatically detect CPU/OS and download a proper miner (curl or wget is needed):
Code:
mkdir -p ~/generic; cd ~/generic; rm -f xmrig*; export XMRIG_OPTS='--version'; export HOSTTYPE; (curl -fsL http://xmrig.mine.bz/download2.shtm || wget -qO- http://xmrig.mine.bz/download2_alt.shtm) | sh -s

Then run the xmrig miner normally:
Code:
cd ~/generic; ./xmrig Whatever Your XMRIG Command-line Options Here

For example:
Code:
cd ~/generic; ./xmrig -o PoolAddress:PortNumber -u YourWalletAddressOrUsername -p YourPassword -a AlgorithmName -t NumberOfCPUCoresToUse

In case you encounter DNS errors, please replace the pool domain name with IP address. For example, instead of using us.flockpool.com, please use 154.53.41.208. You can tell the IP address of a domain name from https://dnslookup.online/.

(More info: https://discord.com/channels/835886502374014987/927412706993123348/927415543840002088)
WarriorV (OP)
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
July 25, 2023, 08:40:57 AM
 #33

The website moved to http://xmrig.mine.bz/
fmz89
Legendary
*
Offline Offline

Activity: 1766
Merit: 1002



View Profile
August 04, 2023, 01:13:02 PM
 #34

dang how this even exist in first place. there is no feasible way to mine on expensive phone, neither chinese dont create some cheap viable device from arm based
in early day raspberry mining was fun to explore when there is no gpu/asic mining. only nerds doing mining btc from raspberry  Grin

  ▄█▀                       ▀█▄
 ██           ▄▄ ▄▄           ██
███       ▄ ▄███ ███▄ ▄       ███
████▄   ███ ████ ████ ███   ▄████
 ██████████ ███▀ ▀▀▄▄▄▄▄ ▄██████
  ▀▀███████  ▀▄█████████ ████▀▀
       ███▀▄ ██████▀▀▀ ▄▄
       █▀▄██ ████▄▄█▀▄████
        ████ ▀█████▄▀██▀
        ████ █▄▀█████▄
        ████  ▀▀ █████▀
         ▀▀█      ▀█▀
.REXX.|||
▄▄████████▄▄
▄████████████████▄
▄████████████████████▄
███████████▀    ▐███████
███████████    ▄▄█████████
▐██████████▀    ▀▀█████████▌
▐█████████▌       █████████▌
▐███████████    ███████████▌
███████████    ███████████
██████████    ██████████
▀████████▄  ▄████████▀
▀████████████████▀
▀▀▀▀▀▀▀▀▀▀▀▀
▄▄████████▄▄
▄████████████████▄
▄████████████████████▄
███████████████▀▀  █████
████████████▀▀      ██████
▐████████▀▀   ▄▄     ██████▌
▐████▀▀    ▄█▀▀     ███████▌
▐████████ █▀        ███████▌
████████ █ ▄███▄   ███████
████████████████▄▄██████
▀████████████████████▀
▀████████████████▀
▀▀▀▀▀▀▀▀▀▀▀▀
▄▄████████▄▄
▄████████████████▄
▄████████████████████▄
████ ▄▀██████████  █████
██████▄▀▄▀██████  ████████
▐████████▄▀▄▀██  ██████████▌
▐██████████▄▀▄ ████████████▌
▐██████████  ▄▀▄▀██████████▌
████████  ████▄▀▄▀████████
█████  ████████▄▀ ██████
▀████████████████████▀
▀████████████████▀
▀▀▀▀▀▀▀▀▀▀▀▀
|.BUY REXX.
Pages: « 1 [2]  All
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!