diff --git a/wings/1.0/installing.md b/wings/1.0/installing.md index 6a836d1d..f071a302 100644 --- a/wings/1.0/installing.md +++ b/wings/1.0/installing.md @@ -9,6 +9,7 @@ for previous versions of Pterodactyl. ::: ## Supported Systems + 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. 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, run the commands below which will create the base directory and download the wings executable. +### For AMD64 + ```bash mkdir -p /etc/pterodactyl 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 ``` +### 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 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 diff --git a/wings/1.0/upgrading.md b/wings/1.0/upgrading.md index 77b32f80..1411db86 100644 --- a/wings/1.0/upgrading.md +++ b/wings/1.0/upgrading.md @@ -1,7 +1,9 @@ # Upgrading Wings + Upgrading Wings is a painless process and should take less than a minute to complete. ## Wings Version Requirements + 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 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** | ✅ | ## Download Updated Binary + 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 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 + Finally, restart the wings process. Your running servers will not be affected and any open connections to the instance will re-connect automatically.