Upload files to "/"

This commit is contained in:
2026-07-25 19:06:52 +00:00
parent 81aaeed5e9
commit e8dd6d0d72
4 changed files with 81 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
clear
echo XMRIG
echo =====
echo POOLS
echo -----
echo pool.supportxmr.com:443
echo xmr-us-east1.nanopool.org:10343
echo gulf.moneroocean.stream:20128
echo pool.hashvault.pro:80
echo pool.hashvault.pro:443
echo POOL:
read po
clear
echo XMRIG
echo =====
echo WALLET:
read wa
clear
echo XMRIG
echo =====
echo WORKER:
read wo
./xmrig/xmrig --cpu-no-yield --randomx-mode=fast --huge-pages-jit --randomx-1gb-pages -o $po -u $wa -p $wo -k --tls #-x localhost:9050 #--tls-fingerprint
read -n1; echo
+7
View File
@@ -0,0 +1,7 @@
#!/bin/bash
clear
echo XMRIG BENCHMARK
echo ===============
./xmrig/xmrig --bench=1M --cpu-no-yield --randomx-mode=fast --huge-pages-jit --randomx-1gb-pages #-a rx/wow #--submit -x localhost:9050
echo
+22
View File
@@ -0,0 +1,22 @@
#!/bin/bash
sudo apt install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev automake libtool autoconf
git clone https://github.com/xmrig/xmrig.git
git clone https://github.com/xmrig/xmrig-proxy.git
cd xmrig-proxy
git pull https://github.com/xmrig/xmrig-proxy.git
cmake .
make -j$(nproc)
cd ..
cd ./xmrig
git pull https://github.com/xmrig/xmrig.git
cmake .
make -j$(nproc)
cd ..
echo --------------------------------------
./xmrig/xmrig --version
echo --------------------------------------
./xmrig-proxy/xmrig-proxy --version
echo --------------------------------------
echo https://xmrig.com/wizard
echo --------------------------------------
+26
View File
@@ -0,0 +1,26 @@
#!/bin/bash
clear
echo XMRIG-PROXY
echo ===========
echo POOLS
echo -----
echo pool.supportxmr.com:443
echo xmr-us-east1.nanopool.org:10343
echo gulf.moneroocean.stream:20128
echo pool.hashvault.pro:80
echo pool.hashvault.pro:443
echo POOL:
read po
clear
echo XMRIG-PROXY
echo ===========
echo WALLET:
read wa
clear
echo XMRIG-PROXY
echo ===========
echo WORKER:
read wo
./xmrig-proxy/xmrig-proxy -o $po -u $wa -p $wo -k --tls #-x localhost:9050 #--tls-fingerprint
read -n1; echo