Replace <ACCOUNT EMAIL>
and <PASSWORD>
with your own credentials in the following reference script:
#!/bin/bash# Download and install orax-cliwget -O orax-cli https://oraxpool.s3.ca-central-1.amazonaws.com/orax-cli/orax-cli-linux-amd64chmod +x orax-cli# Download LXR Hash bytemap instead of computing itmkdir ~/.lxrhashwget https://oraxpool.s3.ca-central-1.amazonaws.com/lxrhash/lxrhash-seed-fafaececfafaecec-passes-5-size-30.datmv lxrhash-seed-fafaececfafaecec-passes-5-size-30.dat ~/.lxrhash# Register the machine as a miner with its alias being the hostname./orax-cli register -u <ACCOUNT EMAIL> -p <PASSWORD> -a $HOSTNAME# Start mining in the backgroundnohup ./orax-cli mine &