Skip to content

Latest commit

 

History

History
52 lines (39 loc) · 1.95 KB

raspibolt_61_system-overview.md

File metadata and controls

52 lines (39 loc) · 1.95 KB
layout title parent nav_order has_toc
default
System overview
Bonus Section
10
false

Bonus guide: System overview

Difficulty: easy

To get a quick overview over the system status, I created a shell script that is run as "message of the day" (motd) to be shown on login or on demand.

MotD system overview

This script will run as root, so please check it before blindly trusting me.

$ sudo apt install jq net-tools
$ cd /tmp/
$ wget https://raw.githubusercontent.com/Stadicus/RaspiBolt/master/resources/20-raspibolt-welcome

# check script & exit
$ nano 20-raspibolt-welcome

# delete existing welcome scripts and install
$ sudo mv /etc/update-motd.d /etc/update-motd.d.bak
$ sudo mkdir /etc/update-motd.d
$ sudo cp 20-raspibolt-welcome /etc/update-motd.d/
$ sudo chmod +x /etc/update-motd.d/20-raspibolt-welcome
$ sudo ln -s /etc/update-motd.d/20-raspibolt-welcome /usr/local/bin/raspibolt

In case the script runs into problems, it could theoretically prevent you from logging in. We therefore disable all motd execution for the "root" user, so you will always be able to login as "root" to disable it.

$ sudo su
$ touch /root/.hushlogin
$ exit

You can now start the script with sudo raspibolt and it is shown every time you log in.

If the script is showing 'Public Not reachable' but you do have incoming connections and the blockchain is syncing, you might have a router that does not support NAT Loopback. Please check your node at https://bitnodes.earn.com, if it displays your node as available remove the # on lines 147 and 148 and put them before 149 and 150 by editing the file:

$ sudo nano /etc/update-motd.d/20-raspibolt-welcome

Both methods work, but the original method does not rely on third party applications and the earn.com method obviously does, but it is better than no working method at all.


<< Back: Bonus guides