Crypto qubic avis

Comment

Author: Admin | 2025-04-27

.name, id'}Final steps:We've added qubic-switch.sh script that monitors Qubic SEED and if its idle period it switches to your secondary profile.Also we've added ability to add +cpu to your rig names in case you use your CPU to mine other coin or again QUBIC but with CPU.In above scenario rigs will switch both to CPU and GPU mining qubic during mining period and will switch to different CPU and GPU profiles on idle period.Introduced CPU mining only if you add -cpu to your rig name.Content is almost the same as with previous method, but we've removed rig UUID from config and added qubic accesstoken for qubic API connection.Look inside the script for more information on how to automate the proces.config.txt content:API_TOKEN="YOUR-API-TOKEN" # You can get this if you're at least supporter tier from profile.FID="YOUR-FARM-ID" # Go to farms on dashboard and copy uuid link of your farm.MAIN_CPU_PROFILE="original cpu uuid profile mining during qubic idle"MAIN_GPU_PROFILE="original gpu uuid profile mining during qubic idle"QUBIC_CPU_PROFILE="qubic cpu profile uuid"QUBIC_GPU_PROFILE="qubic gpu profile uuid"QUBIC_ACCESSTOKEN="your pool.qubic.li access token"rigs.txt content:rig1rig2+cpurig3-cpurig4These are your rig's names. In this particular example rig2 mines with CPU and rig3 is CPU mining only.While rig1 and rig4 are GPU mining only.Finally add the script to your crontab(use sudo crontab -e):/dev/null 2>&1"> * * * * * /home/miner/qubic/qubic-switch.sh >/dev/null 2>&1Here is an automated setup to simplify your settings: config.txtAPI_TOKEN="REPLACE-THIS-WITH-YOUR-ACTUAL-API-KEY"FID="$FID"MAIN_GPU_PROFILE=""MAIN_CPU_PROFILE=""QUBIC_GPU_PROFILE=""QUBIC_CPU_PROFILE=""QUBIC_ACCESSTOKEN=""EOF(crontab -l 2>/dev/null | grep -v "/home/miner/qubic/qubic-switch.sh" ; echo "* * * * * /home/miner/qubic/qubic-switch.sh >/dev/null 2>&1") | crontab -">mkdir -p qubic && cd qubic;wget https://raw.githubusercontent.com/ddobreff/mmpos/refs/heads/main/scripts/qubic-switch.sh -O qubic-switch.sh && chmod +x qubic-switch.sh;export API_TOKEN=YOUR-API-TOKENFID=$(curl --silent -X GET -H "X-API-Key: ${API_TOKEN}" -H "Content-Type: application/json" https://api.mmpos.eu/api/v1/farms | jq -r '.[] | select(.name == "Default" and .own_access_role == "ROLE_FARM_OWNER") | .id')cat config.txtAPI_TOKEN="REPLACE-THIS-WITH-YOUR-ACTUAL-API-KEY"FID="$FID"MAIN_GPU_PROFILE=""MAIN_CPU_PROFILE=""QUBIC_GPU_PROFILE=""QUBIC_CPU_PROFILE=""QUBIC_ACCESSTOKEN=""EOF(crontab -l 2>/dev/null | grep -v "/home/miner/qubic/qubic-switch.sh" ; echo "* * * * * /home/miner/qubic/qubic-switch.sh >/dev/null 2>&1") | crontab -After that make sure to edit empty profile UUIDs and Qubic accesstoken.Of course you can modify the script to switch only CPU profiles.Feel free to publish changes.

Add Comment