-
-
Save rafpyprog/e4a7048627c3cd61ee657c068f646a3d to your computer and use it in GitHub Desktop.
GNURoot Debian Jessie Android SSH Server
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# GNURoot Debian Jessie Android SSH Server | |
# Google Play Store: https://play.google.com/store/apps/details?id=com.gnuroot.debian | |
# Github: https://github.com/corbinlc/GNURootDebian | |
# change root password | |
passwd | |
apt update | |
apt install -y nano | |
# openssh-server | |
apt install -y openssh-server | |
nano /etc/ssh/sshd_config | |
Port 22 to 2222 | |
UsePrivilegeSeperation no | |
PermitRootLogin yes | |
service ssh restart | |
# dropbear | |
apt install -y dropbear | |
nano /etc/default/dropbear | |
NO_START=0 | |
DROPBEAR_PORT=2222 | |
service dropbear restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment