From 6911ce2c5a7cefaf7c3d5dd04271ea07c68f240a Mon Sep 17 00:00:00 2001 From: Arnaud Lier Date: Sat, 6 Apr 2024 19:27:55 +0000 Subject: [PATCH] Add Installing Permission Manager for Pterodactyl --- ...ling-Permission-Manager-for-Pterodactyl.md | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 Installing-Permission-Manager-for-Pterodactyl.md diff --git a/Installing-Permission-Manager-for-Pterodactyl.md b/Installing-Permission-Manager-for-Pterodactyl.md new file mode 100644 index 0000000..f00db68 --- /dev/null +++ b/Installing-Permission-Manager-for-Pterodactyl.md @@ -0,0 +1,49 @@ +# Prerequisites + +For the sake of this tutorial, we will assume that Pterodactyl is already configured and installed. If this is not the case, here are some tutorials that may help you from other sources: +- [Pterodactyl](https://pterodactyl.io/project/introduction.html) + +Please note that if you get a problem during a step, feel free to join our [Discord](https://discord.gg/RJ2A8yYS2m) to open a ticket. + +If you are missing folders, download the addon again. + +# Installing Pterodactyl Side + +## Installing Node.js and yarn + +Execute these commands : + +### Ubuntu and other Debian-based OS + +```bash +curl -sL https://deb.nodesource.com/setup_16.x | sudo -E bash - +apt install -y nodejs +``` + +### CentOS 7 + +```bash +curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash - +sudo yum install -y nodejs yarn +``` + +### CentOS 8 + +```bash +curl -sL https://rpm.nodesource.com/setup_16.x | sudo -E bash - +sudo dnf install -y nodejs yarn +``` + +## Installing dependencies + +In your bash shell, run these commands: +```bash +npm i -g yarn +cd /var/www/pterodactyl +yarn install +``` + +## Installing the addon +Follow the `PanelEdit_EN.txt` or the `PanelEdit_FR.txt` file contained in the ZIP file that you have downloaded. + +The add-on is now fully configured. You can use it perfectly. \ No newline at end of file