diff --git a/docs/guide/installation.md b/docs/guide/installation.md index 3b36c740..53877eb6 100644 --- a/docs/guide/installation.md +++ b/docs/guide/installation.md @@ -367,11 +367,11 @@ docker-compose down ## Run on Android -It is possible to run Minecraft Console Client on Android through Termux and Ubuntu, but it requires a manual setup with a lot of commands, so be careful not to skip any steps. Depending on your technical background, internet speed, and device speed, this can take anywhere from 10 to 20 minutes or more. +It is possible to run Minecraft Console Client on Android through Termux and Ubuntu, but it requires a manual setup, so be careful not to skip any steps. Depending on your technical background, internet speed, and device speed, this can take anywhere from 10 to 20 minutes or more.
Note
-**This section gets a bit technical. If you run into issues, open a discussion on our GitHub repository page.** +**This section gets a bit technical. If you run into issues, open a discussion on our GitHub repository page, or ask us on our Discord server.**Danger
+Warning
**Once you have installed Termux, open it, pull down the Android notification drawer, find the Termux notification, and expand it (swipe down on the notification) until you see `Exit | Acquire wakelock`. Tap `Acquire wakelock` and allow Termux to bypass battery optimization when prompted. Skipping this step may cause Termux to be killed by Android when running in the background.** @@ -422,9 +422,9 @@ We use `proot-distro`, an official Termux utility, to install Ubuntu. It will in Open Termux and run the following commands one at a time, in order: -1. `pkg update` -2. `pkg upgrade` -3. `pkg install proot-distro` +1. `pkg update -y` +2. `pkg upgrade -y` +3. `pkg install proot-distro -y`Note
@@ -435,13 +435,13 @@ Open Termux and run the following commands one at a time, in order: Now install Ubuntu: ```bash -proot-distro install ubuntu +pd install ubuntu:26.04 ``` Once the installation finishes, start Ubuntu with: ```bash -proot-distro login ubuntu +pd login ubuntu ```Note
@@ -452,60 +452,15 @@ proot-distro login ubuntu #### Installing .NET -First, update the Ubuntu package lists and install a few tools: +First, update the Ubuntu package lists and install a few dependencies and tools: ```bash -apt update -y && apt upgrade -y +apt update && apt upgrade -y && apt install -y dotnet-sdk-10.0 wget curl nano ``` -```bash -apt install wget curl nano -y -``` - -Then install .NET 10.0 using Microsoft's official install script: - -```bash -wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh -chmod +x dotnet-install.sh -./dotnet-install.sh --channel 10.0 -``` - -Now add .NET to your PATH so it works in future sessions. Open `.bashrc`: - -```bash -nano ~/.bashrc -``` - -Scroll to the bottom of the file using the `Page Down` key, add a blank line, and paste the following: - -```bash -export DOTNET_ROOT=$HOME/.dotnet -export PATH=$PATH:$HOME/.dotnet:$HOME/.dotnet/tools -``` - -Warning
- -**If you do not know how to use Nano, watch this [YouTube tutorial](https://www.youtube.com/watch?v=DLeATFgGM-A).** - -Note
- -**If you have a 32-bit ARM device, replace `linux-arm64` with `linux-arm` in the command above.** - -Note
+ +**If you do not know how to use Nano, watch this [YouTube tutorial](https://www.youtube.com/watch?v=DLeATFgGM-A).** + +