📱Android
Installing GRILO to Android!
The tricky part is getting GRILO to run on Android phones and tablets, especially those that run the latest version of Android.
Installation
To install GRILO on your phone or tablet, install the following dependencies:
Ensure that your Android version is compatible with Termux. You need at least 8 GB of free storage and Android 7.0 or higher.
Once you're done, follow the steps:
Install Termux
Install
proot-distro
using the following command:pkg install proot-distro
Install the Ubuntu proot
proot-distro install ubuntu
Log in to the Ubuntu proot
proot-distro login ubuntu
Ensure that you've updated the package cache
apt update
apt dist-upgrade
Install the .NET 6.0, .NET 7.0, or .NET 8.0 runtime
apt install dotnet-runtime-6.0
apt install dotnet-runtime-7.0
apt install dotnet-runtime-8.0
Install
wget
to download the latest release from this page.apt install wget
wget https://github.com/Aptivi/GRILO/releases/download/vx.x.x/x.x.x-bin.zip
Install
unzip
to extract the filesapt install unzip
unzip x.x.x-bin.zip
Execute
dotnet GRILO.Bootloader.dll
Last updated