SSH SERVER ON ANDROID using TERMUX (no-root)
Page content
About Termux
Termux is an Android terminal emulator and Linux environment app that works directly with no rooting or setup required. A minimal base system is installed automatically - additional packages are available using the APT package manager. Source of text: https://termux.com/.
Video Tutorial
Text Tutorial
- Open Termux.
- Update package index by command:
pkg update
. - Now, install OpenSSH by command:
pkg install openssh
. - Check username by command:
whoami
. - Create (new) password by command:
passwd
. - Run OpenSSH Server by command:
sshd
. - And finally connect into
OpenSSH Server
on Android using Termux!- Following command:
ssh <username>@<android-mobile ip address> -p 8022
.
- Following command:
- All done!