From 29185985cb819f4ca719dae9ef9eda25311785e1 Mon Sep 17 00:00:00 2001 From: BanjoFox Date: Fri, 18 Aug 2023 21:33:58 +0000 Subject: [PATCH] Fix typos --- INSTALL.md | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index 797c7801..46b4d7bc 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -1,15 +1,19 @@ # Install a Veilid Node + ## Server Grade Headless Nodes -These network support nodes are heavier than the node a user would establish on their phone in the form of a chat or social media application. A cloud based virtual private server (VPS), such as Digital Ocean Droplets or AWS EC2, with high bandwidth, processing resources, and up time availability is cruicial for building the fast, secure, and private routing that Veilid is built to provide. + +These network support nodes are heavier than the node a user would establish on their phone in the form of a chat or social media application. A cloud based virtual private server (VPS), such as Digital Ocean Droplets or AWS EC2, with high bandwidth, processing resources, and uptime availability is crucial for building the fast, secure, and private routing that Veilid is built to provide. + ### Add the repo to a Debian based system and install a Veilid node This is a multi-step process. + **Step 1**: Add the GPG keys to your operating systems keyring.
*Explanation*: The `wget` command downloads the public key, and the `sudo gpg` command adds the public key to the keyring. - ```shell +```shell wget -O- https://packages.veilid.net/gpg/veilid-packages-key.public | sudo gpg --dearmor -o /usr/share/keyrings/veilid-packages-keyring.gpg ``` **Step 2**: Identify your architecture
@@ -18,7 +22,7 @@ wget -O- https://packages.veilid.net/gpg/veilid-packages-key.public | sudo gpg - dpkg --print-architecture ``` -**Step 3**: Add Veilid to your list of availible software.
+**Step 3**: Add Veilid to your list of available software.
*Explanation*: Using the command in **Step 2** you will need to run **one** of the following: - For **AMD64** based systems run this command: @@ -30,7 +34,7 @@ echo "deb [arch=amd64 signed-by=/usr/share/keyrings/veilid-packages-keyring.gpg] echo "deb [arch=arm64 signed-by=/usr/share/keyrings/veilid-packages-keyring.gpg] https://packages.veilid.net/apt stable main" | sudo tee /etc/apt/sources.list.d/veilid.list 1>/dev/null ``` *Explanation*: -Each of the above commands will create a new file called `veilid.list` in the `/etc/apt/sources.list.d/`. This file contains instructions that tell the operating system where to download Veilid. +Each of the above commands will create a new file called `veilid.list` in the `/etc/apt/sources.list.d/`. This file contains instructions that tell the operating system where to download Veilid. **Step 4**: Refresh the package manager.
*Explanation*: This tells the `apt` package manager to rebuild the list of available software using the files in `/etc/apt/sources.list.d/` directory @@ -44,9 +48,8 @@ apt update apt install veilid-server veilid-cli ``` - ### Add the repo to a Fedora based system and install a Veilid node -**Step 1**: Add Veilid to your list of availible software.
+**Step 1**: Add Veilid to your list of available software.
*Explanation*: With the package manager updated, it is now possible to install Veilid! ```shell yum-config-manager --add-repo https://packages.veilid.net/rpm/veilid-rpm-test-repo.repo