Skip to content

Instantly share code, notes, and snippets.

@thislight
Last active June 1, 2024 16:24
Show Gist options
  • Save thislight/bffff3072c6a8233f021665332f90314 to your computer and use it in GitHub Desktop.
Save thislight/bffff3072c6a8233f021665332f90314 to your computer and use it in GitHub Desktop.
Termux setup
echo "Setting up env."
#
apt update -y
#
apt upgrade -y
# Basic tools
apt install wget curl tar unzip patch man less nodejs python -y
# other tools
apt install findutils grep diffutils coreutils binutils util-linux linux-man-pages apt-transport-https debianutils -y
# tools for termux
apt install termux-tools termux-api -y
# chroot to other system
apt install proot -y
# openssh
apt install openssh -y
# make
apt install cmake make automake -y
# c compiler
apt install clang -y
# git
apt install git -y
# shell
bash -c "$(curl -fsSL https://git.io/oh-my-termux)"
echo "installed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment