What is teleconsole?
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.
Requirements.
1) Internet connection with (300-400MB of data)
2) Phone with termux installed.
3) Some Linux command line skills and basic debugging skills
Procedure.
Compile environment preparation (Not need if you already have an environment ready)
Cloning the needed repositories and building
Enjoy! 
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.
Requirements.
1) Internet connection with (300-400MB of data)
2) Phone with termux installed.
3) Some Linux command line skills and basic debugging skills
Procedure.
Compile environment preparation (Not need if you already have an environment ready)
Code:
apt update
apt install gcc golang make
Code:
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