vault backup: 2023-07-23 08:38:03

This commit is contained in:
zleyyij 2023-07-23 08:38:03 -06:00
parent 0aa55a2bfd
commit 252fe16e6e

View File

@ -19,7 +19,11 @@ I like to have the minecraft server jar in `/opt/minecraft` (`/opt` is for non-u
```sh ```sh
# Make a new folder named `minecraft` in `/opt` # Make a new folder named `minecraft` in `/opt`
sudo mkdir /opt/minecraft sudo mkdir /opt/minecraft
# Create a new group named `minecraft`
sudo groupadd minecraft
# Add your user to it
sudo usermod -aG minecraft your-username-here
# Make it so that the *minecraft* group owns
``` ```
This enables minecraft to run in the background, restart if it crashes, etc etc. This enables minecraft to run in the background, restart if it crashes, etc etc.