Improve Documentation
minecraft-pi-reborn/pipeline/head This commit looks good
Details
minecraft-pi-reborn/pipeline/head This commit looks good
Details
parent
5da52a962b
commit
71fadf1645
@ -0,0 +1,66 @@
|
||||
# Manual Installation
|
||||
|
||||
## System Requirements
|
||||
- At Least Debian/Raspbian Buster Or Ubuntu 20.04
|
||||
|
||||
## Before You Install
|
||||
|
||||
<details>
|
||||
<summary>Debian/Raspbian Buster</summary>
|
||||
|
||||
### ``libseccomp2``
|
||||
``minecraft-pi-reborn`` requires a newer version of the package ``libseccomp2`` to be installed when using Debian/Raspbian Buster.
|
||||
|
||||
```sh
|
||||
# Install Backports Key
|
||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 04EE7237B7D453EC
|
||||
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 648ACFD622F3D138
|
||||
# Install Backports Repository
|
||||
echo 'deb http://deb.debian.org/debian buster-backports main' | sudo tee -a /etc/apt/sources.list
|
||||
# Update APT Index
|
||||
sudo apt update
|
||||
# Install Updated libseccomp2
|
||||
sudo apt install -t buster-backports libseccomp2
|
||||
```
|
||||
|
||||
### Official Docker Package
|
||||
``minecraft-pi-reborn`` requires the official Docker package when running Debian/Raspbian Buster instead of the Debian package (``docker.io``).
|
||||
|
||||
```sh
|
||||
# Remove Debian Docker Package
|
||||
sudo apt-get remove -y docker.io
|
||||
# Install Official Docker Package
|
||||
curl -fsSL https://get.docker.com -o get-docker.sh
|
||||
sudo sh get-docker.sh
|
||||
```
|
||||
|
||||
### Existing Installation
|
||||
If you have un-modded ``minecraft-pi`` installed, you must remove it and transfer your existing worlds to ``minecraft-pi-reborn``'s folder.
|
||||
|
||||
```sh
|
||||
# Transfer Worlds
|
||||
mv ~/.minecraft ~/.minecraft-pi
|
||||
# Remove Vanilla Minecraft Pi
|
||||
sudo apt-get remove -y minecraft-pi
|
||||
```
|
||||
|
||||
</details>
|
||||
|
||||
<details>
|
||||
<summary>NVIDIA Users</summary>
|
||||
|
||||
The proprietary NVIDIA drivers are not supported, use either the open-source ``noveau`` drivers or use a different GPU (ie. Intel Integrated GPU).
|
||||
|
||||
</details>
|
||||
|
||||
## Installing
|
||||
1. Download Appropriate Package From [Here](https://jenkins.thebrokenrail.com/job/minecraft-pi-reborn/job/master/lastSuccessfulBuild/artifact/out/deb/) (See Table Below To Pick Correct Package)
|
||||
2. Install With ``sudo apt install ./<Path To File>`` Or Your Preferred Package Installer
|
||||
3. Have Fun!
|
||||
|
||||
### Package Table
|
||||
| Package | Description |
|
||||
| --- | --- |
|
||||
| ``minecraft-pi-reborn-virgl`` | Minecraft Pi Edition Using VirGL For Hardware Acceleration (Recommended For Desktop/Laptop) |
|
||||
| ``minecraft-pi-reborn-native`` | Minecraft: Pi Edition Using Docker Device Mounting For GPU Acceleration (Recommended For ARM Devices (ie. Raspberry Pi, PinePhone, etc)) |
|
||||
| ``minecraft-pi-reborn-server`` | Minecraft Pi Edition Modded Into A Dedicated Server |
|
@ -0,0 +1,26 @@
|
||||
# Troubleshooting
|
||||
Game logs are located in ``/tmp/minecraft-pi``.
|
||||
|
||||
## ``Couldn't connect to Docker daemon at http+docker://localhost - is it running?``
|
||||
Start Docker if it isn't running:
|
||||
```sh
|
||||
sudo service docker start
|
||||
```
|
||||
|
||||
## ``Error response from daemon: error gathering device information while adding custom device "/dev/dri": no such file or directory``
|
||||
Make sure you are using the correct GPU drivers for your system.
|
||||
|
||||
If you are using a Raspberry Pi, make sure your GPU driver is set to ``Full KMS`` or ``Fake KMS`` in ``raspi-config``.
|
||||
|
||||
## ``Segmentation Fault`` (Exit Code: ``139``)
|
||||
Report an issue with reproduction instructions and system details.
|
||||
|
||||
## ``[ERR]: Invalid ~/.minecraft-pi Permissions``
|
||||
Update ``~/.minecraft-pi`` permissions:
|
||||
```sh
|
||||
sudo chown -R "$(id -u):$(id -g)" ~/.minecraft-pi
|
||||
chmod -R u+rw ~/.minecraft-pi
|
||||
```
|
||||
|
||||
## Other
|
||||
If you experience a crash/error not listed above, report it on the issue tracker **with your game log attached**.
|
After Width: | Height: | Size: 30 KiB |
Loading…
Reference in new issue