diff --git a/wings/1.0/installing.md b/wings/1.0/installing.md index 31a257e6..f5201020 100644 --- a/wings/1.0/installing.md +++ b/wings/1.0/installing.md @@ -102,28 +102,12 @@ GRUB_CMDLINE_LINUX_DEFAULT="swapaccount=1" 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. -:::: tabs -::: tab "Normal Install" - -``` bash +```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 ``` -::: -::: tab "ARM64 Install" -If you are using an AArch64/ARM64 CPU, download the ARM64 Wings executable instead by running these commands. Be aware that you will need Docker Images built for ARM64, or your servers will not work. - -```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 62bf5a75..c36a298a 100644 --- a/wings/1.0/upgrading.md +++ b/wings/1.0/upgrading.md @@ -17,26 +17,11 @@ most cases your base Wings version should match that of your Panel. ## Download Updated Binary First, download the updated wings binary into `/usr/local/bin`. -:::: tabs -::: tab "Normal Upgrade" - ``` 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 ``` -::: -::: tab "ARM64 Upgrade" -When using an AArch64/ARM64 CPU, download the ARM64 Wings executable with the commands below. - -```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.