mirror of
https://github.com/EngineGPDev/Autoinstall.git
synced 2025-01-18 22:02:22 +03:00
Update README.md (#40)
This commit is contained in:
parent
02f4c6f819
commit
682b85fd90
63
README.md
63
README.md
@ -1,10 +1,55 @@
|
|||||||
<p align="center"><b>Automatic installation for EngineGP</p>
|
## Automatic installation for EngineGP
|
||||||
Supported systems:</br>
|
**This shell script allows you to:**
|
||||||
GNU/Linux: Debian 11, 12</br>
|
- Install EngineGP in automatic mode;
|
||||||
GNU/Linux: Ubuntu 22.04, 24.04</br>
|
- Set up a location (unit);
|
||||||
</br>
|
- Download game servers.
|
||||||
Starting the auto installer:</br>
|
## Supported systems:
|
||||||
apt -y install git</br>
|
- **GNU/Linux:** Debian 11, 12
|
||||||
git clone https://github.com/EngineGPDev/Autoinstall.git</br>
|
- **GNU/Linux:** Ubuntu 22.04, 24.04
|
||||||
chmod +x ./Autoinstall/install.sh</br>
|
> [!IMPORTANT]
|
||||||
|
> The architecture and bit depth of x86_64 are required
|
||||||
|
## Starting the auto installer:
|
||||||
|
- **Update indexes and packages**
|
||||||
|
```bash
|
||||||
|
apt -y update && apt -y upgrade
|
||||||
|
```
|
||||||
|
- **Install GIT**
|
||||||
|
```bash
|
||||||
|
apt -y install git
|
||||||
|
```
|
||||||
|
- **Clone the repository**
|
||||||
|
```bash
|
||||||
|
git clone https://github.com/EngineGPDev/Autoinstall.git
|
||||||
|
```
|
||||||
|
- **Make the installation file executable**
|
||||||
|
```bash
|
||||||
|
chmod +x ./Autoinstall/install.sh
|
||||||
|
```
|
||||||
|
- **Run automatic installation**
|
||||||
|
```bash
|
||||||
./Autoinstall/install.sh
|
./Autoinstall/install.sh
|
||||||
|
```
|
||||||
|
## Automatic installation keys:
|
||||||
|
- **Forcibly specifying an IP address**
|
||||||
|
```bash
|
||||||
|
./Autoinstall/install.sh --ip 192.0.2.0
|
||||||
|
```
|
||||||
|
> [!NOTE]
|
||||||
|
> Instead of 192.0.2.0, you need to substitute your IP address.
|
||||||
|
|
||||||
|
- **Choosing the php version**
|
||||||
|
```bash
|
||||||
|
./Autoinstall/install.sh --php 7.4
|
||||||
|
```
|
||||||
|
> [!NOTE]
|
||||||
|
> Instead of 7.4, you need to substitute the desired php version;
|
||||||
|
> Supported php versions: 7.4, 8.0, 8.1, 8.2
|
||||||
|
|
||||||
|
- **Selecting the working branch of the panel**
|
||||||
|
```bash
|
||||||
|
./Autoinstall/install.sh --branch main
|
||||||
|
```
|
||||||
|
> [!NOTE]
|
||||||
|
> main - the current stable version;
|
||||||
|
> beta - current beta version;
|
||||||
|
> develop - future beta version.
|
||||||
|
Loading…
Reference in New Issue
Block a user