From 5e83976a9ded9bd97444db51e00d078f7e5a5939 Mon Sep 17 00:00:00 2001 From: Dobromir Popov Date: Thu, 4 Sep 2025 21:21:02 +0300 Subject: [PATCH] info - initial --- rin/miner/readme.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 rin/miner/readme.md diff --git a/rin/miner/readme.md b/rin/miner/readme.md new file mode 100644 index 0000000..53fb967 --- /dev/null +++ b/rin/miner/readme.md @@ -0,0 +1,23 @@ +from https://github.com/StickyFingaz420/CPUminer-opt-rinhash + + + +Option 1: Build from Source (Recommended) +bash + +Copy +# Install build dependencies +sudo apt update +sudo apt install build-essential autotools-dev autoconf pkg-config libcurl4-openssl-dev libjansson-dev libssl-dev libgmp-dev zlib1g-dev git automake libtool + +# Clone the repository (if you haven't already) +git clone https://github.com/rplant8/cpuminer-opt-rinhash.git +cd cpuminer-opt-rinhash + +# Build it +./autogen.sh +./configure CFLAGS="-O3 -march=native -funroll-loops -fomit-frame-pointer" +make -j$(nproc) + +# Test the newly built binary +./cpuminer -a rinhash -o stratum+tcp://192.168.0.188:3333 -u username.workername -p x -t 4 \ No newline at end of file