在 Android 上使用 Ubuntu 安装 Droid Normal Assistant

在 Android 上使用 Ubuntu 安装 Droid Normal Assistant

七月 12, 2021

介绍

Droid Normal Assistant

安卓一般固件解包打包助手, 简称: D.N.A

Termux

Android 下的一个高级终端模拟器,开源且不需要 root,支持 apt 管理软件包

Termux 0.116 下载

来源: APKMirror

安装

  1. 打开Termux ,输入代码,获取存储权限

    BASH
    1
    termux-setup-storage


  2. 下载git、tar、proot

    BASH
    1
    2
    pkg update
    pkg install git tar proot wget -y


  3. 下载ubuntu.tar.xz及安装脚本

    BASH
    1
    2
    git clone https://gitee.com/sharpeter/proot-ubuntu --depth 1
    bash proot-ubuntu/install_ubuntu.sh


  4. 启动 ubuntu 20.04

    BASH
    1
    ubuntu


  5. 输入下列代码

    BASH
    1
    2
    3
    sudo apt update && sudo apt upgrade -y #必须执行
    sudo apt install git cpio aria2 brotli android-sdk-libsparse-utils openjdk-11-jre p7zip-full -y #必须执行,使用新版本前建议重新安装一次
    sudo apt install zip unzip gawk sed curl wget -y #可选,非必需


  6. 下载 D.N.A

    BASH
    1
    git clone https://gitee.com/sharpeter/DNA.git --depth 1


  7. 启动

    BASH
    1
    cd DNA && python3 run.py


作者: 棕果核
标题: 在 Android 上使用 Ubuntu 安装 Droid Normal Assistant
声明: 本文采用 CC BY 4.0 进行声明

-   END   -