Mine for blocks with your Raspberry Pi wallet and the following instructions.
The tutorial is compatible with Raspbian 11 (bullseye) and above.
Click the Terminal app icon in your dock.
Update your Raspberry Pi with the following command:sudo apt-get update && sudo apt-get upgrade -y
Disable the swap file on your Raspberry Pi with the following command:sudo dphys-swapfile swapoff
Open nano.sudo nano /etc/dphys-swapfile
Change the value "CONF_SWAPSIZE=100" with "CONF_SWAPSIZE=1024".
Save the file with the keyboard shortcut ctrl + x.
Re-initialize the swap file with the following command:sudo dphys-swapfile setup
Start the swap file with the following command:sudo dphys-swapfile swapon
Download the wallet of your coin with the following command:wget "https://dl.walletbuilders.com/download?customer=2e319b4a3192c511773dc63698af84c8c32ed5e4adb46095da&filename=aetheris-qt-raspberry.tar.gz" -O aetheris-qt-raspberry.tar.gz
Type the following command to extract the tar file:tar -xzvf aetheris-qt-raspberry.tar.gz
Type the following command to install the wallet and tools for your coin:sudo mv qt/aetheris-qt aetherisd aetheris-cli aetheris-tx /usr/bin/
Create the data directory for your coin with the following command.mkdir $HOME/.aetheris
Open nano.nano $HOME/.aetheris/aetheris.conf -t
Paste the following into nano.
rpcuser=rpc_userrpcpassword=rpc_password_your_passwordrpcbind=127.0.0.1rpcallowip=127.0.0.1listen=1server=1addnode=node3.walletbuilders.com
addnode=mining-p2pool.go.ro
Save the file with the keyboard shortcut ctrl + x.
Open nano.nano ~/Desktop/mine.sh -t
Paste the following into nano.#!/bin/bash
SCRIPT_PATH=`pwd`;
cd $SCRIPT_PATH
echo Press [CTRL+C] to stop mining.
while :
do
aetheris-cli generatetoaddress 1 $(aetheris-cli getnewaddress)
done
Save the file with the keyboard shortcut ctrl + x.
Make the file executable.chmod +x ~/Desktop/mine.sh
Open nano.nano ~/Desktop/Aetheris-qt.sh -t
Paste the following into nano.aetheris-qt
Save the file with the keyboard shortcut ctrl + x.
Make the file executable.chmod +x ~/Desktop/Aetheris-qt.sh
Go to the desktop (GUI) of your Raspberry Pi.
Open the file Aetheris-qt.sh, press on the button "Execute" to start your wallet.
Go to the desktop, open the file mine.sh and press on the button "Execute in Terminal" to mine your first block.