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/
Thank you so much!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
No problem!
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit