๐ฅ Video Tutorial
๐ง Step-by-Step Guide
๐ Enable Developer Options
To keep the screen always on while charging (prevents sleep mode):
1. Go to Settings > About phone
2. Tap Build number 7 times to unlock Developer Options

๐ Install F-Droid & UserLAnd
- ๐ Search for F-Droid on Google or go to ๐ https://f-droid.org

- โฌ๏ธ Download and install F-Droid

- ๐ Open F-Droid and search for UserLAnd
- โฌ๏ธ Download and install UserLAnd

๐ง Set Up Ubuntu in UserLAnd
- ๐ง Choose Ubuntu

- ๐งโ๐ป Fill in a username and password for SSH and VNC

- ๐ Select SSH and press Confirm

- โณ Wait for the system to initialize
- ๐ Enter your password โ Ubuntu should greet you with a "Welcome"

๐ฆ Update System & Install Dependencies
apt update

sudo apt upgrade

sudo apt install python3 git python3-pip python3-dev

โ Clone & Run Duino Coin Miner
git clone https://github.com/revoxhere/duino-coin.git

cd duino-coin

pip3 install requests

python3 PC_Miner.py

๐ Fill in:
- ๐ผ Duino wallet username
- โ๏ธ Mining intensity
- ๐งต Number of threads
- ๐ฏ Difficulty, identifier (optional), and developer donation
๐ Miner shows a message: FastHash not available for your system.

๐งฐ Build FastHash Manually
- โ Stop miner: Press
CTRL+Ca few times - Install
curl:
sudo apt install curl

- Download Rust compiler:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs/ | sh

๐ Choose option 1
4. Load Rust environment:
source $HOME/.cargo/env

- Download FastHash sources:
wget https://server.duinocoin.com/fasthash/libducohash.tar.gz

tar -xvf libducohash.tar.gz

cd libducohash

- Build FastHash:
cargo build --release
๐ Move FastHash to Miner Directory
cd target/release

cp libducohasher.so /home/user13/duino-coin/

cd /home/user13/duino-coin/

๐ Run Miner with FastHash
python3 PC_Miner.py

๐ With FastHash, the average mining hashrate: 1.56 MH/s โก

๐ Summary
- โ Android 5.1 + UserLAnd = Ubuntu environment
- โ Duino Coin miner runs successfully
- โก FastHash boosts mining speed to 1.56 MH/s
- ๐ง Manual Rust compilation required for performance
