Teleconsole is a shell remote control program made by gravitational. Its client is totally open source and pretty functional.
This will be a guide on how to compile it from scratch for termux.
[SIZE=7]
Requirements.[/SIZE]
[SIZE=6][/SIZE]
Internet connection with (300-400MB of data)
Phone with termux installed.
Some Linux command line skills and basic debugging skills
[SIZE=7]Procedure.[/SIZE]
Compile environment preparation (Not need if you already have an environment ready)
[CODE]
apt update
apt install gcc golang make
[/CODE]
Cloning the needed repositories and building
mkdir ~/go
export GOPATH=~/go
mkdir -p ${GOPATH}/src/github.com/gravitational
cd ${GOPATH}/src/github.com/gravitational
git clone https://github.com/abhiramshibu/teleport
git clone https://github.com/abhiramshibu/teleconsole
cd teleconsole
make
Enjoy!