Now we'll create a system user. Right now you are logged in as `root`, but typical linux good practice is to set up stuff as a user. You can use whatever name you want, but for this tutorial we will use a user called `user123`
Now we'll create a system user. Right now you are logged in as `root`, but typical linux good practice is to set up stuff as a user. You can use whatever name you want, but for this tutorial we will use a user called `user123`
````bash
adduser user123
````
You will be prompted for a password and some extra info. Select your pssword, but you can simply skip the extra info by pressing `Enter`all the way to the end.
Next, add user to sudoers list, and change from `root` over to `user123`
````bash
usermod -aG sudo user123
su - user123
````
Next, we'll install jagerman42's (aka Professor Podnocker, aka Jason) public keys that is used to sign binaries.
echo "deb https://deb.imaginary.stream $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/imaginary.stream.list
````
Now to resync package repositories...
````bash
sudo apt update
````
... and install Lokinet
````bash
sudo apt install lokinet
````
Congrats! Lokinet is now running in the background, but we're not done just yet. Lokinet is running
and you can find your Lokinet address, but it will not be persistant in case of a Lokinet restart or server reboot. So let's go ahead and create a persistant Lokinet address.
Lets edit the file `lokinet.ini` and add an entry.
````bash
sudo nano /etc/loki/lokinet.ini
````
Copy the following and add to the [network] section
````bash
keyfile=/var/lib/lokinet/snappkey.private
````
To save, press `CTRL+x`and confirm with `Y`and press `Enter`
Now, we can restart Lokinet, and it will create a persitant Lokinet addressed
````bash
sudo systemctl restart lokinet
````
You can check your Lokinet address by issuing this commands