Advertisement
Makertronic

xelis mining

Apr 24th, 2024
843
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.24 KB | None | 0 0
  1. ###############################################################################
  2. # #
  3. # Xelis.io #
  4. # Auteur : Makertronic #
  5. # Web : https://www.makertronic-yt.com/ #
  6. # Date : 24/04/2024 #
  7. # Description : Tutoriel en ligne de commande Bash pour installer le node #
  8. # #
  9. ###############################################################################
  10.  
  11.  
  12. ## Liens :
  13. - Site : https://xelis.io/
  14. - Docs : https://docs.xelis.io/
  15. - Github : https://github.com/xelis-project/xelis-blockchain
  16. - Explorer : https://testnet-explorer.xelis.io/
  17. - miner 1 : https://github.com/3DP-The-AllFather/xelis-gpu-miner/releases
  18. - miner 2 : https://github.com/Mineco1006/xminer-builds/releases/tag/0.1.0
  19.  
  20. ## Mise à jour de l'OS
  21. sudo apt -q update && sudo apt upgrade -y
  22. sudo apt install git screen wget btop -y
  23.  
  24. ## Installation du node
  25. wget https://github.com/xelis-project/xelis-blockchain/releases/download/v1.9.2/x86_64-unknown-linux-gnu.tar.gz
  26. tar xvzf x86_64-unknown-linux-gnu.tar.gz
  27. cd x86_64-unknown-linux-gnu
  28.  
  29. ## lancer le node
  30. screen ./xelis_daemon --allow-boost-sync
  31.  
  32. ## Creation du Wallet
  33. ./xelis_wallet
  34. > create
  35. -> Entrez un nom et un mot de passe (ne le perdez pas),
  36. -> copier la seed (suite de mots),
  37. -> Sauvegarder le répertoire wallet sur une autre machine ou une clef.
  38. > display_address
  39. -> Copier votre adresse (la mienne : xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd)
  40. > seed
  41. -> pour voir sa seed
  42.  
  43. ## Miner GPU et CPU
  44. mkdir allminer
  45. cd allminer
  46. wget https://github.com/3DP-The-AllFather/xelis-gpu-miner/releases/download/0.4/xelis-taxminer
  47. chmod +x xelis-taxminer
  48.  
  49. Pour GPU :
  50. screen ./xelis-taxminer --host 192.168.1.8:8080 --wallet xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd --boost
  51.  
  52. Pour CPU :
  53. screen ./xelis-taxminer --host 192.168.1.8:8080 --wallet xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd --cpu
  54.  
  55.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement