Advertisement
Makertronic

Qubic mining 2024

Sep 18th, 2024 (edited)
1,660
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 5.49 KB | Cryptocurrency | 0 0
  1. ###############################################################################
  2. #                                                                             #
  3. #   QUBIC     -   Tutoriel en ligne de commande Bash                          #
  4. #   Auteur : Makertronic                                                      #
  5. #   Web : https://www.makertronic-yt.com/                                     #
  6. #   Date : 18/09/2024                                                         #
  7. #   Description : Installation et configuration d'un node LiLYPAD             #
  8. #                                                                             #
  9. ###############################################################################
  10. #                                                                             #
  11. #   Licence Apache 2.0                                                        #
  12. #   Copyright 2024 Makertronic. tous droits réservés                          #
  13. #                                                                             #
  14. ###############################################################################
  15.  
  16.  
  17. ###############################################################################
  18. #                                                                             #
  19. #   Liens                                                                     #
  20. #                                                                             #
  21. ###############################################################################
  22.  
  23. - pool : https://app.qubic.li/main/mining/pool
  24. - wallet : https://wallet.qubic.li/
  25. - aleo incentive pour mes membres : https://aleo.org/post/incentives-program-distribution/
  26.  
  27.  
  28. ###############################################################################
  29. #                                                                             #
  30. #   FlightSheet                                                               #
  31. #                                                                             #
  32. ###############################################################################
  33.  
  34. Installation URL
  35. https://github.com/qubic-li/hiveos/releases/download/latest/qubminer-latest.tar.gz
  36.  
  37. Wallet and worker template:
  38. %WORKER_NAME%
  39.  
  40. Pool URL:
  41. https://mine.qubic.li/
  42.  
  43. Extra config arguments:
  44. nvtool --setcoreoffset 250 --setclocks 1700 --setmem 5001
  45. "accessToken":"eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCJ9.eyJJZCI6ImRjNWQ5NzYwLTg2YmYtNDQxMy05NmVmLTA1ZDE1OTJhNWFiNiIsIk1pbmluZyI6IiIsIm5iZiI6MTcyNjYzODAxMCwiZXhwIjoxNzU4MTc0MDEwLCJpYXQiOjE3MjY2MzgwMTAsImlzcyI6Imh0dHBzOi8vcXViaWMubGkvIiwiYXVkIjoiaHR0cHM6Ly9xdWJpYy5saS8ifQ.eC9RnzBCu_ArfwDfJDgEm9kZXHJvARKFiEsjIl5xRPWBlXetVzDn0iNtcvq-nNy1iP3InJcA8eQYvH2HdbrcHWDDBvAQigpqYhBTYz81DWspAElwMcqbrrsRdBitgYMDmOOmbIo9-Mwdx0tEifmCCZ56hfzQSmDYxvmushvktf_g-nyopxpV1r5PCqueVF-RJGB338PbehqJglM7wW1dnolHcgHBW5aARvwxkaWPaPI8q23JG6vTfOpNpFd7U7Z5rx-tNpHwJ1g8n5QVWv-3Wt1iQIjKo6rL_deWT2DNB_JKBqZEgQqa1HPJxsp7ZPSbvOyQYt2i45J57Thtvmxz6A" AutoUpdate
  46.  
  47.  
  48.  
  49. ###############################################################################
  50. #                                                                             #
  51. # Sur la pool Jetski                                                          #
  52. # https://github.com/jtskxx/Jetski-Qubic-Pool                                 #
  53. #                                                                             #
  54. ###############################################################################
  55. 「 ✦ 🌊JETSKI POOL QUBIC🌊 ✦ 」
  56. How to connect?
  57. https://connect.jetskipool.ai/
  58.  
  59. 🌴Pool Website🌴
  60. https://qubic.jetskipool.ai/
  61.  
  62. Pool Discord
  63. discord.jetskipool.ai
  64.  
  65. Pool Telegram
  66. https://t.me/JetskiQubic_bot
  67.  
  68.  
  69. ###############################################################################
  70. #                                                                             #
  71. # DUAL MINE                                                                   #
  72. #                                                                             #
  73. ###############################################################################
  74.  
  75. DUAL MINE QUBIC/ALEO:
  76.  
  77. Suivez le processus d’une des options pour l’installation du mineur selon la pool choisie en suivant une des étapes précédente.
  78. Configuration de la FS Qubic/Aleo en ajoutant l’argument suivant :
  79. F2Pool:
  80. "idleSettings": {"gpuOnly": true,"command": "/hive/miners/custom/aleominer/aleominer","arguments": "-u stratum+tcp://aleo-asia.f2pool.com:4400 -w makertronic.%WORKER_NAME%"}
  81.  
  82. par exemple :
  83. {
  84.   "Settings": {
  85.     "baseUrl": "https://mine.qubic.li/",
  86.     "alias": "TONNOMWORKER",
  87.     "trainer": {
  88.       "cpu": false,
  89.       "gpu": true,
  90.       "gpuVersion": "CUDA12",
  91.       "cpuVersion": "",
  92.       "cpuThreads": 10
  93.     },
  94.     "useLiveConnection": false,
  95.     "accessToken": "TONTOKEN",
  96.     "idleSettings": {
  97.       "command": "/hive/miners/custom/aleominer/aleominer",
  98.       "arguments": "-u stratum+tcp://aleo-asia.f2pool.com:4400 -w pseudoF2Pool.%WORKER_NAME%"
  99.     }
  100.   }
  101. }
  102.  
  103.  
  104. ###############################################################################
  105. #                                                                             #
  106. # GLIBC                                                                       #
  107. #                                                                             #
  108. ###############################################################################
  109.  
  110. echo "deb http://cz.archive.ubuntu.com/ubuntu jammy main" >> /etc/apt/sources.list
  111. apt update
  112. apt install libc6
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement