Lokinet allows anonymous access to the internet. It works similar like a Tor and has its advantages (for example can route also UDP).
- Is powered by a decentralised network of staked nodes. Nobody can shut it down. Nobody can spy on you.- Lokinet traffic is onion-routed. Your browsing is private, secure, and anonymous.
- Lokinet hides the IPs you connect to. Your location and identity are unknown.

https://lokinet.org


Among other platform, it can be installed on Linux. In this case it is Debian/Ubuntu installation commands:

sudo curl -so /etc/apt/trusted.gpg.d/oxen.gpg https://deb.oxen.io/pub.gpg && echo "deb https://deb.oxen.io $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/oxen.list
sudo apt-get update && sudo apt-get upgrade && sudo apt-get install lokinet

You can also install package "lokinet-gui" package for graphical control panel, but it uses 350MB disk space.

Lokinet is now running and enabled at boot:

Code:
$ systemctl status lokinet
● lokinet.service - LokiNET: Anonymous Network layer thingydoo, client
     Loaded: loaded (/lib/systemd/system/lokinet.service; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2023-04-23 17:06:15 CEST; 18min ago
   Main PID: 4014213 (lokinet)
     Status: "v0.9.11 client | known/connected: 964/6 | paths/endpoints 31/0"
      Tasks: 15 (limit: 76098)
     Memory: 11.2M
        CPU: 9.947s
     CGroup: /system.slice/lokinet.service
             └─4014213 /usr/bin/lokinet /var/lib/lokinet/lokinet.ini
systemctl start lokinet
systemctl stop lokinet

It shown its configuration file path which i can open using: sudo nano /var/lib/lokinet/lokinet.ini

To update Lokinet: sudo apt update && sudo apt upgrade lokinet

Enable exit node which will connect to internet/non-lokinet servers on your behalf (use .loki address of your choice https://oxen.directory/exitnodes/ ):
sudo sed -i -e "s|#exit-node=|exit-node=euroexit.loki|g" /var/lib/lokinet/lokinet.ini

Other tutorials:

https://www.privacyproshop.com/howto-install-lokinet-on-pop_os-ubuntu-or-debian/