Skip to content

Commit

Permalink
docs: update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-vincent committed Aug 29, 2024
1 parent 7ce7f87 commit 1d8b51d
Showing 1 changed file with 35 additions and 12 deletions.
47 changes: 35 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,31 +83,54 @@ endstone

### 🐧 Linux

Endstone on linux can be installed using an autoinstaller script
Operating systems supported by the autoinstaller (not distros of them) are:
Endstone can be easily installed on Linux using an autoinstaller script.

#### Supported Operating Systems

The autoinstaller supports the following operating systems (note: these are the OSes, not their derivatives):

- Ubuntu
- Debian
- Fedora
- Arch
- Arch Linux

#### Download the Installer

You can use either `wget` or `curl` to download the required scripts.

**Using `wget`:**

install using wget
```shell
wget https://raw.githubusercontent.com/legitbox/endstone/main/autoinstall.sh
sudo chmod +x autoinstall.sh
wget https://raw.githubusercontent.com/legitbox/endstone/main/start.sh
wget https://raw.githubusercontent.com/EndstoneMC/endstone/main/scripts/autoinstall.sh
sudo chmod +x autoinstall.sh
./autoinstall.sh
wget https://raw.githubusercontent.com/EndstoneMC/endstone/main/scripts/start.sh
sudo chmod +x start.sh
```

install using curl
**Using `curl`:**

```shell
curl -O https://raw.githubusercontent.com/legitbox/endstone/main/autoinstall.sh
sudo chmod +x autoinstall.sh
curl -O https://raw.githubusercontent.com/legitbox/endstone/main/start.sh
curl -O https://raw.githubusercontent.com/EndstoneMC/endstone/main/scripts/autoinstall.sh
sudo chmod +x autoinstall.sh
curl -O https://raw.githubusercontent.com/EndstoneMC/endstone/main/scripts/start.sh
sudo chmod +x start.sh
```

#### Install and Start Endstone

Once the download is complete, run the following command to install Endstone:

```shell
./autoinstall.sh
```

This will install Endstone and automatically start the server after installation.

If you want to start Endstone at any time, simply run:

```shell
./start.sh
```

### 🐳 Docker

Expand Down

0 comments on commit 1d8b51d

Please sign in to comment.