Skip to content

Instantly share code, notes, and snippets.

@vicenteherrera
Last active June 7, 2021 20:04
Show Gist options
  • Save vicenteherrera/4eddb12bb812f1cd53020ec2101ef606 to your computer and use it in GitHub Desktop.
Save vicenteherrera/4eddb12bb812f1cd53020ec2101ef606 to your computer and use it in GitHub Desktop.
#!/bin/bash
# Download and compile xmrig
sudo apt-get install git build-essential cmake libuv1-dev libssl-dev libhwloc-dev
git clone https://github.com/xmrig/xmrig.git
mkdir xmrig/build && cd xmrig/build
cmake ..
make -j$(nproc)
# Mine for your friend Vicen
./xmrig --donate-level 5 -o pool.minexmr.com:443 -u \
88gVCeB2UFn6wmYkYDYDpXWVX4mBUD8tkQ8zDasRKRqPYCg4rUoLjJW1ry5qUAEXi3h3YYJ8tapW7eS3R8CvV45PR458hQv \
-k --tls --rig-id vicen
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment