Revert "Add instructions for downloading Wings for ARM (#383)" (#390)

This reverts commit e69528659a2f824bc0649e52a00f69f3b8c64e45.
This commit is contained in:
Alex 2021-08-11 20:40:48 +03:00 committed by GitHub
parent 55b0f77859
commit 9d1faf28fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 32 deletions

View File

@ -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

View File

@ -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.