Update README.md (#41)

This commit is contained in:
Sergei Solovev 2024-08-18 01:21:42 +03:00 committed by GitHub
parent 682b85fd90
commit 3c81184508
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,35 +9,35 @@
> [!IMPORTANT] > [!IMPORTANT]
> The architecture and bit depth of x86_64 are required > The architecture and bit depth of x86_64 are required
## Starting the auto installer: ## Starting the auto installer:
- **Update indexes and packages** **Update indexes and packages**
```bash ```bash
apt -y update && apt -y upgrade apt -y update && apt -y upgrade
``` ```
- **Install GIT** **Install GIT**
```bash ```bash
apt -y install git apt -y install git
``` ```
- **Clone the repository** **Clone the repository**
```bash ```bash
git clone https://github.com/EngineGPDev/Autoinstall.git git clone https://github.com/EngineGPDev/Autoinstall.git
``` ```
- **Make the installation file executable** **Make the installation file executable**
```bash ```bash
chmod +x ./Autoinstall/install.sh chmod +x ./Autoinstall/install.sh
``` ```
- **Run automatic installation** **Run automatic installation**
```bash ```bash
./Autoinstall/install.sh ./Autoinstall/install.sh
``` ```
## Automatic installation keys: ## Automatic installation keys:
- **Forcibly specifying an IP address** **Forcibly specifying an IP address**
```bash ```bash
./Autoinstall/install.sh --ip 192.0.2.0 ./Autoinstall/install.sh --ip 192.0.2.0
``` ```
> [!NOTE] > [!NOTE]
> Instead of 192.0.2.0, you need to substitute your IP address. > Instead of 192.0.2.0, you need to substitute your IP address.
- **Choosing the php version** **Choosing the php version**
```bash ```bash
./Autoinstall/install.sh --php 7.4 ./Autoinstall/install.sh --php 7.4
``` ```
@ -45,7 +45,7 @@ chmod +x ./Autoinstall/install.sh
> Instead of 7.4, you need to substitute the desired php version; > Instead of 7.4, you need to substitute the desired php version;
> Supported php versions: 7.4, 8.0, 8.1, 8.2 > Supported php versions: 7.4, 8.0, 8.1, 8.2
- **Selecting the working branch of the panel** **Selecting the working branch of the panel**
```bash ```bash
./Autoinstall/install.sh --branch main ./Autoinstall/install.sh --branch main
``` ```