Mar 14, 2025

[UPDATE] Crypto : Duino Coin

[UPDATE] CRYPTO : DUINO COIN.

An updated tutorial on how to mine Duino Coin (DUCO) on an Android Mobile Device. For more information please refer to my previous post (https://danielcheah.blogspot.com/search/label/Duino-Coin)

This new method have been successfully tested on the latest version of Termux and Ubuntu-in-Termux system.


(A) INSTALL F-DROID.
  1. Download and Install F-Droid Store (https://f-droid.org/en/)
  2. You need to allow installation from "Unknown Sources" option.
  3. Once installed, open F-Droid Apps.
  4. It will automatically update its own repositories, wait for it to complete.

(B) INSTALL TERMUX (TERMINAL EMULATOR).
  1. Inside F-Droid Store, search for --> Termux (Terminal Emulator).
  2. Download and install it.
  3. You need to allow installation from "Unknown Sources" option.

(C) INSTALL UBUNTU IN TERMUX.
  1. pkg upgrade
  2. pkg install wget
  3. pkg install proot
  4. pkg install git
  5. termux-setup-storage     # Allow the access when prompted.
  6. git clone https://github.com/MFDGaming/ubuntu-in-termux.git
  7. cd /ubuntu-in-termux
  8. chmod +x ubuntu.sh
  9. ./ubuntu.sh     #wait for the installation to complete.
  10. ./startubuntu.sh

(D) INSTALL DUINO MINER IN UBUNTU.
  1. apt update && apt upgrade -y
  2. apt install wget -y
  3. apt install proot -y
  4. apt install git -y
  5. apt install python3 -y
  6. apt install python3-pip -y
  7. apt install python3-dev -y
  8. git clone https://github.com/revoxhere/duino-coin.git
  9. cd duino-coin
  10. pip install requests --break-system-packages
  11. pip install colorama --break-system-packages
  12. pip install py-cpuinfo --break-system-packages
  13. pip install psutil --break-system-packages
  14. pip install pypresence --break-system-packages

* Note : The option "--break-system-packages" is only required should you encountered any error during "pip" installations. Thus run the command without these option first.

* Note : If you still encountered errors, try install full Python3 by using "apt install python3-full" method.


(E) START DUINO MINER.
  1. python3 PC_Miner.py
  2. You will be prompted to key-in your Duino e-Wallet Username & Mining Key.
  3. You will be prompted to select the Intensity, Cores and Donation level.
  4. You can also specify the Miner's Hostname when prompted.
  5. Wait for 1-2 minutes and the new miner will be reflected in your Duino e-Wallet website.


!!! HAPPY COMPUTING !!!


Jan 2, 2025

Nomodeset : Proxmox and Ubuntu

At times where the connected Monitor or Graphics card are unable to support certain resolution, either the wordings is too small to read or overly large making some info or buttons unable to be seen.

A simple fix is to "edit" the grub boot file and this can be done on-the-fly easily.


1. During the boot-up, select the appropriate install option and Press [E] to edit the boot-up configuration.


2. Append the "nomodeset" word at the end of the following line.

for Proxmox :-
linux     /boot/linux26 ro randisk_size=16777216 rw quiet splash=silent proxtui vga=788 nomodeset

for Ubuntu :-
linux - /boot/vmlinuz-4.4.0-41-generix.efi.signed root=UUID=7x357f9a-47e7-946e-499eBee8adic ro quiet splash nomodeset svt_handoff


3. Proceed to save and exit the configuration file, Press [CTRL] + [X].



If you want the changes to be permanent after installation completed, you will need to modify "GRUB" file with the same option.

4. Edit the "GRUB" configuration file.
sudo nano /etc/default/grub


5. Append the "nomodeset" as shown below.
GRUB_CMDLINE_LINUX_DEFAULT="quiet nomodeset"


6. Update the "GRUB" configuration.
sudo update-grub


7. Finally reboot the server for the new configurations to take effects.


!!! HAPPY COMPUTING !!!