You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Request to Add Arch Linux Support for ARM64 in LinuxDroid (Termux) with VNC Setup
We would like to request the addition of Arch Linux support in LinuxDroid for ARM64 architecture on Android devices. Below are the details and specific asks to achieve this.
Requirements:
Create a new bash script arch_LinuxDroid.sh for Arch Linux installation on ARM64 Android devices via Termux.
Specify and use a reliable Arch Linux rootfs file for the installation. Reference and maintain the rootfs used for this installation.
Automate the download and setup of Arch Linux using proot or proot-distro within Termux.
Add VNC support to allow users to access Arch Linux through a graphical interface. This should include the installation of a VNC server and the necessary X11 packages.
Checklist:
Implement arch_LinuxDroid.sh to handle Arch Linux installation automatically.
Ensure the script downloads and configures the rootfs for Arch Linux (ARM64 architecture).
Provide an option in the script for setting up VNC (with the necessary dependencies, like tigervnc and xorg-xinit).
Document the usage of the script in the repository’s README file.
Verify the script’s functionality on Android ARM64 devices.
Rootfs File for Arch Linux ARM64:
Please refer to the following link for the rootfs file to be used for reference:
#!/bin/bash# Arch Linux Setup Script for Termux on ARM64# This script automates the installation of Arch Linux on Android devices through Termux.echo"Starting Arch Linux installation on Termux for ARM64..."# Update Termux packages
pkg update && pkg upgrade -y
# Install necessary dependencies
pkg install proot-distro wget tar -y
# Download and install Arch Linux rootfs# You will need to specify the rootfs file to use for installation
proot-distro install archlinux
# Switch to Arch Linux environment
proot-distro login archlinux
# Install essential packages inside Arch Linuxecho"Updating Arch Linux and installing basic packages..."
pacman -Syu --noconfirm
pacman -S vim git base-devel --noconfirm
# VNC Server setup (optional)echo"Do you want to set up VNC for a graphical environment? (y/n)"read vnc_choice
if [ "$vnc_choice"=="y" ];thenecho"Setting up VNC server..."
pacman -S tigervnc xorg-xinit --noconfirm
# Configure VNCecho"Starting VNC server on display :1..."
vncserver :1 -geometry 1280x720
echo"VNC setup complete. Use VNC viewer with localhost:5901 to access."elseecho"VNC setup skipped."fiecho"Arch Linux installation and configuration complete!"
The text was updated successfully, but these errors were encountered:
Request to Add Arch Linux Support for ARM64 in LinuxDroid (Termux) with VNC Setup
We would like to request the addition of Arch Linux support in LinuxDroid for ARM64 architecture on Android devices. Below are the details and specific asks to achieve this.
Requirements:
arch_LinuxDroid.sh
for Arch Linux installation on ARM64 Android devices via Termux.Checklist:
arch_LinuxDroid.sh
to handle Arch Linux installation automatically.tigervnc
andxorg-xinit
).Rootfs File for Arch Linux ARM64:
Please refer to the following link for the rootfs file to be used for reference:
Sample Bash Script Outline
The text was updated successfully, but these errors were encountered: