diff --git a/README.md b/README.md
index 041a3c1..804bc34 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
- Official 
Dusk Node installer, an easy-to-use installer for running a Dusk node on the Dusk mainnet, Nocturne testnet and the Lunare devnet.
+ Official 
Dusk Node installer, an easy-to-use installer for running a Dusk node on the Dusk mainnet and Nocturne testnet.
@@ -21,7 +21,7 @@
-> For more information checkout the
+> For more information check out the
> [node operator documentation](https://docs.dusk.network/operator/overview/) on
> our docs.
@@ -54,7 +54,7 @@
## 📋 Prerequisites
-- Operating System: Ubuntu 24.04 LTS (officially supported)
+- Operating System: Ubuntu 24.04 LTS (officially supported)
- Dependencies: OpenSSL 3, GLibc 2.38+
- Environment: Any compatible Linux environment (VPS, local, cloud instance)
@@ -77,7 +77,7 @@ The configuration files, binaries, services and scripts can be found in
`/opt/dusk/`.
The log files can be found in `/var/log/rusk.log` and
-`/var/log/rusk-recovery.log`.
+`/var/log/rusk_recovery.log`.
## 🔑 Pre-Installation Setup
@@ -128,7 +128,7 @@ add `duskadmin` to the `sudo` group:
sudo usermod -aG sudo duskadmin
```
-Log out from you node for the group changes to take effect.
+Log out and back in for the group changes to take effect.
### Step 4: Verify Access
@@ -141,7 +141,7 @@ ssh duskadmin@
### Step 5: Firewall
-It's important to setup a firewall. A firewall controls incoming and outgoing
+It's important to set up a firewall. A firewall controls incoming and outgoing
traffic and ensures your system is protected.
You can use common tools like `ufw`, `iptables`, or `firewalld`. At a minimum,
@@ -178,7 +178,7 @@ the following command:
curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/latest/download/node-installer.sh | sudo bash
```
-:warning: **CAUTION** To run the **not release yet** unstable version of the
+:warning: **CAUTION** To run the **not released yet** unstable version of the
Node Installer execute the following command:
```sh
@@ -188,7 +188,7 @@ curl --proto '=https' --tlsv1.2 -sSfL https://raw.githubusercontent.com/dusk-net
### Networks
By default, the installer runs the node for our mainnet. If you'd like to run a
-node for the Nocturne testnet or Lunare devnet, you can specify the network
+node for the Nocturne testnet, you can specify the network
using the `--network` flag:
```sh
@@ -199,7 +199,6 @@ Available network options:
- `mainnet` (default)
- `testnet`
-- `devnet`
### Features
@@ -214,7 +213,7 @@ You can combine both flags to install a specific network and feature. For
example:
```sh
-curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/latest/download/node-installer.sh | sudo bash -s -- --network devnet --feature archive
+curl --proto '=https' --tlsv1.2 -sSfL https://github.com/dusk-network/node-installer/releases/latest/download/node-installer.sh | sudo bash -s -- --network testnet --feature archive
```
Available feature options:
@@ -326,7 +325,7 @@ download_state --list
```
If you want to sync up with a specific state instead of the default one, you
- need to pass the block height of the state you want to syncup with.
+ need to pass the block height of the state you want to sync up with.
```sh
download_state 369876
```
@@ -353,7 +352,7 @@ The Dusk node installer supports modular installation logic for different Linux
### How it works
-The installer will automatically detect your OS based on `etc/os-release`, and look for a matching script under `/os/.sh`.
+The installer will automatically detect your OS based on `/etc/os-release`, and look for a matching script under `os/.sh`.
If found, the script will be sourced to handle:
- Package DB updating and dependency installation (`install_deps`)
diff --git a/assets/finish.msg b/assets/finish.msg
index d379777..e0e6708 100644
--- a/assets/finish.msg
+++ b/assets/finish.msg
@@ -24,7 +24,7 @@ The installer also adds a small Rusk querying utility called ruskquery.
To see what you can query with it:
ruskquery
-To query the the node for the latest block height:
+To query the node for the latest block height:
ruskquery block-height
To check if your node installer is up to date:
diff --git a/cloud-init/README.md b/cloud-init/README.md
index cba738e..2ed3b26 100644
--- a/cloud-init/README.md
+++ b/cloud-init/README.md
@@ -6,7 +6,7 @@
### 1. Install Multipass
-Multipass is able to provide Ubuntu VMs that can be initialized with cloud-init to simulate cloud deployments locally. It is available for Linux, Windows and MacOS.
+Multipass is able to provide Ubuntu VMs that can be initialized with cloud-init to simulate cloud deployments locally. It is available for Linux, Windows and macOS.
Additional resources:
- https://multipass.run/install
@@ -18,9 +18,9 @@ Additional resources:
multipass launch -n dusknode --cloud-init dusknode.yaml
```
-This will create a VM with the latest Ubuntu LTS image and apply the `dusknode.yml` cloud-init configuration.
+This will create a VM with the latest Ubuntu LTS image and apply the `dusknode.yaml` cloud-init configuration.
-This will create a user "dusk" along with some other configuation and the execution of the `node-installer.sh` script. Ensure your SSH public key is added to the ssh_authorized_keys field in the YAML configuration before applying it.
+This will create a user "dusk" along with some other configuration and the execution of the `node-installer.sh` script. Ensure your SSH public key is added to the ssh_authorized_keys field in the YAML configuration before applying it.
### 3. Use
@@ -36,7 +36,7 @@ multipass shell dusknode
You can either use the Multipass GUI or use the CLI. Running `sudo su dusk` in the respective VM, will log you in as the dusk user who has the node installed.
-#### Restart multipass on linux
+#### Restart multipass on Linux
```bash
sudo snap restart multipass.multipassd