How to make Reticulum Network Stack rnsd Start on Boot on Linux

Simon Phillips February 5, 2025
Video Thumbnail
Simon Phillips Logo

Simon Phillips

View Channel

About

No channel description available.

Video Description

This video shows how to make Reticulum Network Stack rnsd start on Boot of Ubuntu Linux 22.04.5, including mistakes which are part of the learning process so make sure to watch til the end ;-) sudo ln -s $(which rnsd) /usr/local/bin/ sudo nano /etc/systemd/system/rnsd.service File content - remember to enter your username: [Unit] Description=Reticulum Network Stack Daemon After=multi-user.target [Service] # If you run Reticulum on WiFi devices, # or other devices that need some extra # time to initialise, you might want to # add a short delay before Reticulum is # started by systemd: ExecStartPre=/bin/sleep 10 Type=simple Restart=always RestartSec=3 User=yourusername ExecStart=rnsd --service [Install] WantedBy=multi-user.target After saving do sudo systemctl start rnsd sudo systemctl enable rnsd Thank you to the person who published this method - I forgot to make a note of where I found it, but you know who you are !

You May Also Like