
SSH SERVER ON ANDROID using TERMUX (no-root)
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 password by command
passwd
. - Run OpenSSH server by command
sshd
. - And finally connect into
OpenSSH server
on Android using Termux! Following command:ssh <username>@<mobile ip address> -p 8022
. - All Done!