🐧
Installing on Linux (CLI)
Begin by updating your package lists. The below command downloads package lists from your repositories and "updates" them to get information on the newest versions of packages and their dependencies. It will do this for all repositories and PPAs.
Run the following command:
sudo apt-get update
You'll notice a bunch of package lists were downloaded. Once this is complete, run the below command to fetch new versions of any packages we currently have installed on the system:
sudo apt-get upgrade
You'll be prompted to authorise the use of disk space. Type
y
and press Enter to authorise.If you do not have
curl
installed on your computer, now is also a good time to install it, as we will use it later:sudo apt install curl
You only need to do this step the first time you want to set up the Lokinet repository. After you've done it once, the repository will automatically update whenever you fetch new system updates.
This first command installs the public key used to sign official Lokinet binaries.
sudo curl -so /etc/apt/trusted.gpg.d/oxen.gpg https://deb.oxen.io/pub.gpg
The next command tells
apt
where to find the packages:echo "deb https://deb.oxen.io $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/oxen.list
Then resync your package repositories with:
sudo apt update
Now install Lokinet:
sudo apt install lokinet
Congratulations, Lokinet is now installed and running in the background.
To start Lokinet manually, run the following command:
sudo systemctl start lokinet
To stop Lokinet manually, run the following command:
sudo systemctl stop lokinet
To update Lokinet, run the following command:
sudo apt update && sudo apt install lokinet && sudo lokinet-bootstrap && sudo systemctl
Head over to Exit nodes or Accessing SNApps for an overview of the exciting things you can do with Lokinet up and running!
If your bootstrap is not configured properly, run the following command:
sudo lokinet-bootstrap
Then restart Lokinet:
sudo systemctl restart lokinet
It has been reported that Linux Mint users may need to use the following command instead of the second command in 2. Installation:
echo "deb https://deb.oxen.io focal main" | sudo tee /etc/apt/sources.list.d/oxen.list
Last modified 11mo ago