From c1490a9685754076c6017aebc78928c5a00422b5 Mon Sep 17 00:00:00 2001 From: TheBrokenRail Date: Thu, 10 Dec 2020 14:55:45 -0500 Subject: [PATCH] Update README --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8aca318..bae4621 100644 --- a/README.md +++ b/README.md @@ -2,12 +2,13 @@ This is a project allowing Minecraft: Pi Edition to be run without a Raspberry Pi using Docker. ## Setup -[View Binaries](https://jenkins.thebrokenrail.com/job/minecraft-pi-docker/job/master/lastSuccessfulBuild/artifact/out/) +1. Download Appropriate Package (See Table Below) From [Here](https://jenkins.thebrokenrail.com/job/minecraft-pi-docker/job/master/lastSuccessfulBuild/artifact/out/deb/) +2. Install With ``sudo apt install ./`` ### Packages | Package | Description | | --- | --- | -| ``minecraft-pi-server`` | Dedicated Server | +| ``minecraft-pi-server`` | Minecraft Pi Edition Modded Into A Dedicated Server | | ``minecraft-pi-virgl`` | Minecraft Pi Edition Using VirGL For Hardware Acceleration (Recommended For Desktop) | | ``minecraft-pi-native`` | Minecraft: Pi Edition Using Docker Device Mounting For GPU Acceleration (Recommended For Raspberry Pi) | @@ -20,9 +21,17 @@ While the distribution-provided version of Docker works fine on most systems, in #### Raspbian Buster By default Raspbian Buster ships an older version of the package ``libseccomp2``. This package is used to block certain dangerous system calls from running inside Docker containers. The included version accidentally blocks the system call ``clock_gettime64``, this causes bugs inside Minecraft: Pi Edition. However, the Debian ``buster-backports`` repo includes an updated version. You can enable the ``buster-backports`` repo and update ``libseccomp2`` by running: + ```sh +# Install Backports Key +sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 04EE7237B7D453EC +sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 648ACFD622F3D138 +# Install Backports Repository echo 'deb http://deb.debian.org/debian buster-backports main' | sudo tee -a /etc/apt/sources.list -sudo apt update && sudo apt install libseccomp2 +# Update APT Index +sudo apt update +# Install Updated libseccomp2 +sudo apt install -t buster-backports libseccomp2 ``` ## Dedicated Server