How To Mine XMRig (Monero) On Ubuntu 18.04 And Up!

in miner •  4 years ago 

I wanted to show how I build XMRrig mining software from source code on Ubuntu 18.04 operating system. To build and compile XMRig software I need to install dependencies below:

sudo apt install -y build-essential cmake libuv1-dev libmicrohttpd-dev libssl-dev libhwloc-dev


Then I need to download XMRig source code from Github repository . If nothing else is needed then I can build and compile it.
git clone https://github.com/xmrig/xmrig.git
cd xmrig
mkdir build
cd build
cmake ..
make -j $(nproc)


How To Start The Miner?

sudo ./xmrig -o [POOL] -u [WALLET] -t [THREADS]

I would recommend this pool: https://supportxmr.com/

I would recommend this wallet: https://mymonero.com/

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Thank you so much!

No problem!