Skip to content

Commit 3512fa6

Browse files
authored
Merge pull request #701 from Red-Banana-Official/debian-changes
2 parents 381ffec + 77d04ea commit 3512fa6

File tree

5 files changed

+21
-100
lines changed

5 files changed

+21
-100
lines changed

.vuepress/config.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ module.exports = {
8383
children: [
8484
'/community/installation-guides/wings/centos7.md',
8585
'/community/installation-guides/wings/centos8.md',
86-
'/community/installation-guides/wings/debian.md',
8786
]
8887
},
8988
{

community/installation-guides/panel/debian.md

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,39 @@
1-
# Debian 11 & 12
1+
# Debian 11, 12 & 13
22

33
[[toc]]
44

55
::: tip
6-
This guide is based off the [official installation documentation](/panel/1.0/getting_started.md) but is tailored specifically for Debian 11 and 12.
6+
This guide is based off the [official installation documentation](/panel/1.0/getting_started.md) but is tailored specifically for Debian 11, 12 and 13.
77
:::
88

9+
| Operating System | Version | Supported | Notes |
10+
| ---------------------------------- | ------- | :----------------: | ----------------------------------------------------------- |
11+
| **Debian** | 11 | :white_check_mark: | |
12+
| | 12 | :white_check_mark: | |
13+
| | 13 | :white_check_mark: | - MariaDB can be installed without the repo setup script - Redis can be installed without the Redis APT repository
14+
915
## Dependency Installation
1016

1117
In this guide, we will install the required dependencies for the Pterodactyl panel. After that, you can follow the official installation documentation.
1218

1319
```bash
1420
# Install necessary packages
15-
apt -y install software-properties-common curl ca-certificates gnupg2 sudo lsb-release
21+
apt install -y curl ca-certificates gnupg2 sudo lsb-release
1622

1723
# Add additional repositories for PHP
1824
echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" | sudo tee /etc/apt/sources.list.d/sury-php.list
1925
curl -fsSL https://packages.sury.org/php/apt.gpg | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/sury-keyring.gpg
2026

21-
# Add Redis official APT repository
27+
# Add Redis official APT repository (Debian 11 & 12)
2228
curl -fsSL https://packages.redis.io/gpg | sudo gpg --dearmor -o /usr/share/keyrings/redis-archive-keyring.gpg
2329
echo "deb [signed-by=/usr/share/keyrings/redis-archive-keyring.gpg] https://packages.redis.io/deb $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/redis.list
2430

25-
# MariaDB repo setup script
31+
# MariaDB repo setup script (Debian 11 & 12)
2632
curl -LsS https://r.mariadb.com/downloads/mariadb_repo_setup | sudo bash
2733

34+
# Update repositories list
35+
apt update
36+
2837
# Install Dependencies
2938
apt install -y php8.3 php8.3-{common,cli,gd,mysql,mbstring,bcmath,xml,fpm,curl,zip} mariadb-server nginx tar unzip git redis-server
3039
```
@@ -40,3 +49,7 @@ curl -sS https://getcomposer.org/installer | sudo php -- --install-dir=/usr/loca
4049
### Download Files
4150

4251
Great, now all of the dependencies have been dealt with. Continue the installation by following the [official documentation Download Files section](/panel/1.0/getting_started.md#download-files).
52+
53+
### Wings
54+
55+
There is no additional configuration required for Wings on Debian 11, 12 or 13. You can follow the [official Wings install documentation](/wings/1.0/installing.md), which covers Docker installation for Debian.

community/installation-guides/wings/debian.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

daemon/0.6/debian_8_docker.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

panel/1.0/getting_started.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ this software on an OpenVZ based system you will — most likely — not
2929
| | 24.04 | :white_check_mark: | MariaDB can be installed without the repo setup script. |
3030
| **RHEL / Rocky Linux / AlmaLinux** | 8 | :white_check_mark: | Extra repos are required. |
3131
| | 9 | :white_check_mark: | |
32-
| **Debian** | 11 | :white_check_mark: | |
33-
| | 12 | :white_check_mark: | |
32+
| **Debian** | 11 | :white_check_mark: | [Debian Dependencies](/community/installation-guides/panel/debian.md) |
33+
| | 12 | :white_check_mark: | [Debian Dependencies](/community/installation-guides/panel/debian.md)
34+
| | 13 | :white_check_mark: | [Debian Dependencies](/community/installation-guides/panel/debian.md)
3435

3536
## Dependencies
3637

0 commit comments

Comments
 (0)