Skip to content

Instantly share code, notes, and snippets.

@oPOCCOMAXAo
Created September 17, 2023 16:44
Show Gist options
  • Save oPOCCOMAXAo/7b879b6fbdbbef72fa25400681fc3650 to your computer and use it in GitHub Desktop.
Save oPOCCOMAXAo/7b879b6fbdbbef72fa25400681fc3650 to your computer and use it in GitHub Desktop.

Install vscode on Android 10

1. Install Termux

Source

Install apk from f-droid catalog: link

Google Play versions are deprecated.

2. Install ubuntu arm64

Update libs.

pkg update
pkg upgrade

Install proot-distro. About

pkg install proot-distro

Install ubuntu.

proot-distro install ubuntu

Start ubuntu session.

proot-distro login ubuntu

3. Install code-server

Start ubuntu session from previous step.

Update.

apt update

Install code-server. Source

curl -fsSL https://code-server.dev/install.sh | sh

Start code-server with specified password YOUR_PASSWORD and port 8180.

export PASSWORD=YOUR_PASSWORD
code-server --auth password --bind-addr 0.0.0.0:8180

Node.js was also installed with code-server.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment