Skip to content

Latest commit

 

History

History
57 lines (42 loc) · 1.58 KB

quick-installation-and-usage.md

File metadata and controls

57 lines (42 loc) · 1.58 KB

📖 Installation & Usage

Before installing:-

Quick Install

{% hint style="info" %} Install all dependencies and developer-selected Distro {% endhint %}

. <(curl -Ls https://bit.ly/udroid-installer)

From sources (manual install)

apt update && apt install git -y
git clone https://github.com/RandomCoderOrg/fs-manager-udroid
cd fs-manager-udroid
bash install.sh

then use udroid --list to get a table of available distros and the names of their suites ( something like jammy:xfce4 ) then use udroid install jammy:xfce4 (or the suite you like) to install.

Here are some examples that show both install and login commands of popular distros

{% tabs %} {% tab title="XFCE4" %}

udroid install jammy:xfce4
udroid login jammy:xfce4

{% endtab %}

{% tab title="GNOME" %}

udroid install jammy:gnome
udroid login jammy:gnome

{% endtab %} {% endtabs %}

Removing a Distro

udroid cli tool has an argument remove that takes care of wiping the suite installation from the device, and --clear-cache option to remove any download (if present) for max release of device storage

{% code title="Example:" fullWidth="false" %}

udroid remove jammy:xfce4
udroid --clear-cache

{% endcode %}