Skip to content

Instantly share code, notes, and snippets.

@raveenb
Last active April 18, 2024 06:27
Show Gist options
  • Save raveenb/ab3217798c827be889b83b584d70b08b to your computer and use it in GitHub Desktop.
Save raveenb/ab3217798c827be889b83b584d70b08b to your computer and use it in GitHub Desktop.
SSH into Android

Connecting to an Android device over SSH

Initial Setup

Install Android App Termux from APKPure or AppStore. If the app exists, just delete and re-install it to get the latest version, The APK can be downloaded from https://apkpure.com/termux/com.termux/ Install the APK using by running

adb install ~/Downloads/Termux_v0.73_apkpure.com.apk

Then locate the app and run it

Install and run SSH Server

Next, run the following commands inside the Termux using the on device keyboard to type. When the setup asks for permission, always choose default option, you can just hit/tap enter on the keyboard, dont let it modify any configs

pkg install root-repo
pkg upgrade
pkg install openssh

Now, set a password for the current user by running passwd, remember this password you will need it later

Then, Start the SSH server inside by running sshd, do not close/exit the app after running the command

Connect to SSH Server

On the pc terminal run the following, dont use root@ as prefix to the ip address

ssh <ip address of android device> -p 8022

When asked for password, enter the password you used in the steps above

This will drop you into a shell where you can do further installs using pkg install <name> or run any other command you would like wget, curl you get a proper linux shell, sweet, enjoy!

Stop SSH Server

Once you are done working with the shell, stop the ssh server by running pkill sshd on the device

Troubleshooting

Host key verification error

If for some odd reason you are getting Host key verification failed error, run the following first

ssh-keygen -R <ip address of android device>

If it still gives you trouble edit ~/.ssh/known_hosts, locate the line(s) with the ip address and delete it and then connect again

Waiting forever to connect

There are instances when the pc to android ip connection will wait a long time. If so, first check if you can ping the android's ip address, and if its not pingable, perhaps reboot the android device. Stating the obvious here, unless the android cant be pinged you cant ssh into it.

Reference

Extracted from Termux's wiki on this topic from here [https://wiki.termux.com/wiki/Remote_Access] it describes alternate ways using Dropbear, Mosh and RSync

@harish1996
Copy link

Thank you for this. I was trying to install openssh-server like i did for ubuntu, which didnt work. This worked very smoothly.

@sevmorris
Copy link

Awesome. Thank you.

@kid1412621
Copy link

cool

@Dentrax
Copy link

Dentrax commented Aug 13, 2022

Unable to locate package root-repo

Edit: FIX: Install Termux on F-Droid. See: https://github.com/termux/termux-packages/wiki/Package-Management

Copy link

ghost commented Oct 20, 2022

Works like a charm! Thank you

@micrub
Copy link

micrub commented Dec 17, 2022

Awsome!

@Ravenstine
Copy link

Awesome guide! The only thing I did differently is I installed Termux using F-Droid. Now I can SSH into the Android head unit for my car! Thanks a bunch!

@raveenb
Copy link
Author

raveenb commented Jan 16, 2023

Awesome guide! The only thing I did differently is I installed Termux using F-Droid. Now I can SSH into the Android head unit for my car! Thanks a bunch!

glad to be of help

@art2223
Copy link

art2223 commented Jul 26, 2023

device has to be rooted?

@lefixx
Copy link

lefixx commented Sep 22, 2023

sshd: no hostkeys availavle -- exiting (pixel 4, f-droid termux)

@raveenb
Copy link
Author

raveenb commented Sep 25, 2023

not sure why the hostkeys are not available, are you two on the same network?

@sreenathyadavk
Copy link

That's working , but how can not access the storage folder in android ssd, i have access for only termux files
Thank you

@FuSan21
Copy link

FuSan21 commented Feb 3, 2024

sshd: no hostkeys availavle -- exiting (pixel 4, f-droid termux)

Just run this ssh-keygen -A

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment