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

  1. Open Termux.
  2. Update package index by command: pkg update.
  3. Now, install OpenSSH by command: pkg install openssh.
  4. Check username by command: whoami.
  5. Create (new) password by command: passwd.
  6. Run OpenSSH Server by command: sshd.
  7. And finally connect into OpenSSH Server on Android using Termux!
    1. Following command: ssh <username>@<android-mobile ip address> -p 8022.
  8. All done!