Update installing.md

Updated some of the commands to include sudo. This is because on Ubuntu at least, systemctl needs this to update and reload, folder cannot be made without sudo etc
This commit is contained in:
MaddDogg98 2023-09-29 18:00:39 -04:00 committed by GitHub
parent ce71df61a7
commit 693ab30a91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -76,7 +76,7 @@ probably using a non-supported kernel. Check our [Kernel Modifications](../../..
If you are on an operating system with systemd (Ubuntu 16+, Debian 8+, CentOS 7+) run the command below to have Docker start when you boot your machine. If you are on an operating system with systemd (Ubuntu 16+, Debian 8+, CentOS 7+) run the command below to have Docker start when you boot your machine.
```bash ```bash
systemctl enable --now docker sudo systemctl enable --now docker
``` ```
#### Enabling Swap #### Enabling Swap
@ -105,9 +105,9 @@ The first step for installing Wings is to ensure we have the required directory
run the commands below, which will create the base directory and download the wings executable. run the commands below, which will create the base directory and download the wings executable.
```bash ```bash
mkdir -p /etc/pterodactyl sudo mkdir -p /etc/pterodactyl
curl -L -o /usr/local/bin/wings "https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")" curl -L -o /usr/local/bin/wings "https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_$([[ "$(uname -m)" == "x86_64" ]] && echo "amd64" || echo "arm64")"
chmod u+x /usr/local/bin/wings sudo chmod u+x /usr/local/bin/wings
``` ```
::: warning OVH/SYS Servers ::: warning OVH/SYS Servers