Today, Iโll show how to compile and run Duino Coin miner on an Orange Pi PC.
๐ฅ Video Tutorial
๐ฅ Download Armbian Linux
- I used Armbian 21.08 Bullseye (CLI version).

- Flash the image to SD card using BalenaEtcher:
- ๐ Flash from file โ Select the downloaded image.

- ๐ฝ Select target โ Choose the SD card.

- ๐ Press Flash to write the image.

- โณ Wait until the image is written.

๐งโ๐ป First Boot on Orange Pi PC
- Insert the SD card into the Orange Pi PC.
- Connect:
- ๐ฅ๏ธ Monitor
- ๐ Power
- ๐ Ethernet
- โจ๏ธ Keyboard
- Power on and wait for boot.

๐ Initial Configuration
- Set root password ๐ก๏ธ
- Choose a shell ๐
- Create a standard user, set its password ๐ค
- Configure location/timezone ๐

๐ Network Setup
Check Orange Piโs IP address:
ifconfig
Use any SSH client to connect (e.g. KiTTY):
- Enter the IP
- Click Start
- Login as
rootusing the password you set
๐ System Update
Update packages:
apt update && apt upgrade

Install Git and Python:
apt install git python3
๐งฌ Clone and Start Duino Coin Miner
Clone the repository:
git clone https://github.com/revoxhere/duino-coin.git

cd duino-coin

Start miner:
python3 PC_Miner.py

Youโll get a warning about missing packages. Install them:
pip3 install requests

Restart the miner:
python3 PC_Miner.py

Then enter:
- ๐ง Duino username
- โ๏ธ Intensity
- ๐งต Number of threads
- ๐งฉ Difficulty
- ๐ป Rig name (optional)
- ๐ธ Developer donation level

๐ Performance
- Without fasthash: 306 kH/s

- With fasthash (compiled separately, shown in video): 1.95 MH/s ๐๐ฅ

