This is a rebirth of the old Apple //e BBS software that was written and maintained by Dmitri Baughman. It operated in the mid '80s in Salt Lake City, UT. LONR was a heavily modified Applesoft BASIC program based on The Proving Grounds BBS software written for the Apple Cat II modem by Mike Heinstein, aka The Timelord.
- IMPORTANT - Python >= 3.6.7 is required!- Update your system
sudo apt update && sudo apt upgrade(Ubuntu systems) - Get the repo
git clone https://github.com/slyderc/lonr.git - CD into 'lonr' and install the server with
sudo ./installer.sh
sudo cp /opt/lonr/firewall.nft /etc/firewall.conf
sudo apt -y install nftables
sudo nft -f /etc/firewall.conf
sudo echo '#!/bin/sh' > /etc/network/if-up.d/firewall
sudo echo 'nft flush ruleset' >> /etc/network/if-up.d/firewall
sudo echo 'nft -f /etc/firewall.conf' >> /etc/network/if-up.d/firewall
sudo chmod +x /etc/network/if-up.d/firewall