Showing posts with label Mining. Show all posts
Showing posts with label Mining. Show all posts

Mar 6, 2023

Crypto : Monero Coin Mining on Ubuntu

Monero Coin (XMR) is another type of crypto mining but only uses CPU performance. If you happens to have old Desktop or Laptop laying around, it is a good place to start.

You will need to first create a Monero Wallet at (https://www.getmonero.org/downloads/#gui), you can install the Monero GUI Wallet.

Take note of the "MNEMONIC SEED" information and the "Wallet Account" information. These informations is very IMPORTANT during the configuration of the mining client later on.


(A) INSTALL UBUNTU SERVER v.22.04.1 64-bit.

  1. Follow the on-screen instructions to install Ubuntu.
  2. When prompted, Select --> OpenSSH
  3. Set your Username, Password and Hostname accordingly.
At the terminal, type the following commands :-
  1. sudo apt update && sudo apt upgrade -y
  2. sudo apt install wget git nano net-tools -y
  3. sudo reboot
  4. sudo wget https://github.com/xmrig/xmrig/releases/download/v6.16.2/xmrig-6.16.2-focal-x64.tar.gz     (as of time of writing)
  5. sudo tar xvzf xmrig-6.16.2-focal-x64.tar.gz
  6. cd xmrig-6.16.2
  7. rm config.json
  8. sudo nano config.json
Now create a new "config.json" file with below information, replace the information according to your account and save & exit when completed :-
 
 {
    "autosave": true,
    "cpu": true,
    "opencl": false,
    "cuda": false,
    "pools": [
        {
            "coin": "monero",
            "algo": "rx/0",
            "url": "[Pool Address]",
            "user": "[Your Account Address]",
            "pass": "[Your Password]",
            "rig-id": "[Hostname]",
            "tls": false,
            "keepalive": true,
            "nicehash": false
        }
    ]
}


(B) START MONERO MINING.

Before starting, below are some shortcuts for references :-

  • hashrate
  • pause
  • resume
  • results
  • connection
Now to start mining, just type --> ./xmrig

NOTE : Latest xmrig-6.19.0-focal-x64.tar.gz are NOT COMPATIBLE with MoneroOcean Pool, must use back older version xmrig-6.16.2-focal-x64.tar.gz to function properly.

UPDATE, 7-March-2023 : After a day run, the computer will becomes very hot (I do mean super hot until it burns your hand), ventilation or cooling of the computer is A MUST ! to keep it operating at efficient temperature.


!!! HAPPY COMPUTING !!!

Mar 5, 2023

Crypto : Duino Coin Mining on Android

 Mining Duino Coin (DUCO) on your old Android Smartphone devices. Please ensure you register a Duino Wallet before proceeding at (https://wallet.duinocoin.com/).

Take note that this methods which was tested on my devices, that includes :-

  • Samsung Galaxy J7+
  • HuaWei Nova 7 SE
  • Samsung Galaxy A02s
  • Samsung Galaxy J5 (2006)
As for other devices brand & model, you have to try your luck. I might update the list of tested devices from time-to-time but do keep in mind that these devices are owned by myself & no longer in use. At certain times you may need to "ROOT" your device in order to have the latest or most recent Android version.

(A) Install F-DROID Store.
  1. Just open any browser and search for --> F-DROID
  2. At the main page, click/tap on the "Download" button.
  3. You may be prompted some questions, just allow the installation (eg. "Allow from unknown source"), depending on your device, the syntax/wording maybe different so don't follow blindly.
  4. Once installed, open the "F-Droid" app and wait for it to update the repositories (it may a while depending on your device and internet speed).
  5. Once done, search for --> TERMUX (Terminal Emulator).
  6. Proceed to download and install. Additional prompt maybe displayed, just as usual allow it.

(B) In TERMUX Terminal.
  1. pkg update
  2. pkg upgrade -y
  3. pkg install wget proot git nano net-tools -y
  4. termux-setup-storage
  5. git clone https://github.com/MFDGaming/ubuntu-in-termux.git
  6. cd ubuntu-in-termux
  7. chmod +x ubuntu.sh
  8. ./ubuntu.sh
  9. Wait for the installation to complete.
  10. ./startubuntu.sh

(C) In Ubuntu Terminal.
  1. apt update && apt upgrade -y
  2. apt install wget proot git nano net-tools -y
  3. apt install python3 python3-pip python3-dev -y
  4. git clone https://github.com/revoxhere/duino-coin.git
  5. cd duino-coin
  6. pip3 install requests
  7. python3 PC_Miner.py
  8. The wizard will prompt you for your Duino Wallet information, proceed to key-in accordingly.
Note: You might want to adjust the Intensity=80/90 instead of 95.
Note: You might want to adjust the Cores=6/7 instead of full Cores use.

Once all completed, the system will start mining and about 1-2 minutes (maybe more) the miner information will be available in your Duino Wallet Dashboard.





!!! HAPPY COMPUTING !!!