Skip to content

Instantly share code, notes, and snippets.

@makertronic
Last active March 25, 2026 09:29
Show Gist options
  • Select an option

  • Save makertronic/c13801e8270dfdc9b533a66559fe8a3e to your computer and use it in GitHub Desktop.

Select an option

Save makertronic/c13801e8270dfdc9b533a66559fe8a3e to your computer and use it in GitHub Desktop.
Miner du versu sur RPI 5
1 . Créer ton wallet VerusCoin :
Va sur https://verus.io/wallet
Télécharge Verus Desktop (dispo Windows/Mac/Linux) ou Verus Mobile (Android/iOS).
Crée un nouveau wallet → note bien ton adresse VRSC (commence par R...).
(Tu peux aussi utiliser le CLI ARM64 si tu veux tout faire sur le Pi, mais Desktop est plus simple).
2. Installer ton Miner :
sudo apt update && sudo apt upgrade -y
sudo apt install screen git curl -y
Bashcurl -o- -k https://raw.githubusercontent.com/Oink70/Android-Mining/main/install.sh | bash
cd ccminer
3. configurer le miner :
nano config.json
Colle ça (remplace TON_ADRESSE par la tienne) :
JSON{
"algo": "verus",
"url": "stratum+tcp://eu.vipor.net:5040",
"user": "TON_ADRESSE.raspberrypi",
"pass": "x",
"threads": 4,
"cpu-priority": 2
}
CTRL S+ CTRL +X
4. Lancer le minage
Bashscreen -S verus
./ccminer -c config.json
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment