docs(wings): Display ARM64 download for wings (#418)

Co-authored-by: softwarenoob <admin@softwarenoob.com>
This commit is contained in:
Boy132 2021-12-10 16:26:47 +01:00 committed by GitHub
parent 3163473197
commit 5a884ae9f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 1 deletions

View File

@ -9,6 +9,7 @@ for previous versions of Pterodactyl.
::: :::
## Supported Systems ## Supported Systems
The following is a list of supported operating systems. Please be aware that this is not an exhaustive list, The following is a list of supported operating systems. Please be aware that this is not an exhaustive list,
there is a high probability that you can run the software on other Linux distributions without much effort. there is a high probability that you can run the software on other Linux distributions without much effort.
You are responsible for determining which packages may be necessary on those systems. There is also a very You are responsible for determining which packages may be necessary on those systems. There is also a very
@ -102,12 +103,22 @@ Some Linux distros may ignore `GRUB_CMDLINE_LINUX_DEFAULT`. Therefore you might
The first step for installing Wings is to make sure we have the required directory structure setup. To do so, The first step for installing Wings is to make sure we have the required directory structure setup. To do so,
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.
### For AMD64
```bash ```bash
mkdir -p /etc/pterodactyl mkdir -p /etc/pterodactyl
curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_amd64 curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_amd64
chmod u+x /usr/local/bin/wings chmod u+x /usr/local/bin/wings
``` ```
### For ARM64/AARCH64
```bash
mkdir -p /etc/pterodactyl
curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_arm64
chmod u+x /usr/local/bin/wings
```
::: warning OVH/SYS Servers ::: warning OVH/SYS Servers
If you are using a server provided by OVH or SoYouStart please be aware that your main drive space is probably allocated to If you are using a server provided by OVH or SoYouStart please be aware that your main drive space is probably allocated to
`/home`, and not `/` by default. Please consider using `/home/daemon-data` for server data. This can be easily `/home`, and not `/` by default. Please consider using `/home/daemon-data` for server data. This can be easily

View File

@ -1,7 +1,9 @@
# Upgrading Wings # Upgrading Wings
Upgrading Wings is a painless process and should take less than a minute to complete. Upgrading Wings is a painless process and should take less than a minute to complete.
## Wings Version Requirements ## Wings Version Requirements
Each version of Pterodactyl Panel also has a corresponding minimum version of Wings that Each version of Pterodactyl Panel also has a corresponding minimum version of Wings that
is required for it to run. Please see the chart below for how these versions line up. In is required for it to run. Please see the chart below for how these versions line up. In
most cases your base Wings version should match that of your Panel. most cases your base Wings version should match that of your Panel.
@ -17,14 +19,25 @@ most cases your base Wings version should match that of your Panel.
| **1.6.x** | **1.5.x** | ✅ | | **1.6.x** | **1.5.x** | ✅ |
## Download Updated Binary ## Download Updated Binary
First, download the updated wings binary into `/usr/local/bin`. First, download the updated wings binary into `/usr/local/bin`.
``` bash ### For AMD64
```bash
curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_amd64 curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_amd64
chmod u+x /usr/local/bin/wings chmod u+x /usr/local/bin/wings
``` ```
### For ARM64/AARCH64
```bash
curl -L -o /usr/local/bin/wings https://github.com/pterodactyl/wings/releases/latest/download/wings_linux_arm64
chmod u+x /usr/local/bin/wings
```
## Restart Process ## Restart Process
Finally, restart the wings process. Your running servers will not be affected and any open Finally, restart the wings process. Your running servers will not be affected and any open
connections to the instance will re-connect automatically. connections to the instance will re-connect automatically.