Last active
June 7, 2021 20:04
-
-
Save vicenteherrera/4eddb12bb812f1cd53020ec2101ef606 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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