Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ###############################################################################
- # #
- # Xelis.io #
- # Auteur : Makertronic #
- # Web : https://www.makertronic-yt.com/ #
- # Date : 24/04/2024 #
- # Description : Tutoriel en ligne de commande Bash pour installer le node #
- # #
- ###############################################################################
- ## Liens :
- - Site : https://xelis.io/
- - Docs : https://docs.xelis.io/
- - Github : https://github.com/xelis-project/xelis-blockchain
- - Explorer : https://testnet-explorer.xelis.io/
- - miner 1 : https://github.com/3DP-The-AllFather/xelis-gpu-miner/releases
- - miner 2 : https://github.com/Mineco1006/xminer-builds/releases/tag/0.1.0
- ## Mise à jour de l'OS
- sudo apt -q update && sudo apt upgrade -y
- sudo apt install git screen wget btop -y
- ## Installation du node
- wget https://github.com/xelis-project/xelis-blockchain/releases/download/v1.9.2/x86_64-unknown-linux-gnu.tar.gz
- tar xvzf x86_64-unknown-linux-gnu.tar.gz
- cd x86_64-unknown-linux-gnu
- ## lancer le node
- screen ./xelis_daemon --allow-boost-sync
- ## Creation du Wallet
- ./xelis_wallet
- > create
- -> Entrez un nom et un mot de passe (ne le perdez pas),
- -> copier la seed (suite de mots),
- -> Sauvegarder le répertoire wallet sur une autre machine ou une clef.
- > display_address
- -> Copier votre adresse (la mienne : xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd)
- > seed
- -> pour voir sa seed
- ## Miner GPU et CPU
- mkdir allminer
- cd allminer
- wget https://github.com/3DP-The-AllFather/xelis-gpu-miner/releases/download/0.4/xelis-taxminer
- chmod +x xelis-taxminer
- Pour GPU :
- screen ./xelis-taxminer --host 192.168.1.8:8080 --wallet xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd --boost
- Pour CPU :
- screen ./xelis-taxminer --host 192.168.1.8:8080 --wallet xel:lqqmdxfz0d0k9qsnq9dycmtv63jra6yh3a0z6aklu9r686pr4vfqqapl2cd --cpu
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement