Quiero ejecutar el terminal en mi dispositivo, sin embargo, la pantalla pequeña es muy inconveniente. Me pregunto si es posible ejecutar la terminal en un dispositivo Android real desde la PC.
Quiero ejecutar el terminal en mi dispositivo, sin embargo, la pantalla pequeña es muy inconveniente. Me pregunto si es posible ejecutar la terminal en un dispositivo Android real desde la PC.
Respuestas:
Puede usar el shell de Android Debug Bridge (ADB) para emitir comandos básicos de Linux en su teléfono, tal como lo haría en una aplicación de emulador de terminal. Para instalar deberás hacer lo siguiente:
Settings -> About phone
y toque "Número de compilación" siete veces. Esto habilitó las herramientas de desarrollador.Developer options
en la sección "Sistema".Developer options
, habilite la opción "Depuración de Android", y luego toque OK
el indicador de verificación.adb devices
adb shell
y presione Entrar, y debería estar conectado a la terminal del teléfono.Esto debería ayudarte a comenzar. Los comandos ADB se enumeran en el sitio de Google aquí . El shell proporciona algunos comandos básicos de Linux como ls
, cp
etc. Tenga en cuenta que la mayoría de los comandos de administración de archivos y dispositivos requerirán root (es decir, privilegios elevados), que es un tema aparte.
Alternativamente a la variante ADB descrita por Chahk (que requiere al menos una instalación mínima de ADB en su computadora), puede instalar una aplicación de servidor SSH en su dispositivo (los ejemplos incluyen, pero no se limitan a, Servidor SSH , DigiSSHD , Servidores Ultimate ) Luego puede usar el ssh
comando en Linux / Mac, o una herramienta como PuTTY en Windows, para conectarse a su dispositivo y ejecutar comandos de shell, como si estuviera usando una aplicación de terminal en el dispositivo.
help/on-topic
páginas donde mejor se ajuste) .
Necesitará
Your Android phone ( Rooted and with Wi-Fi functionality )
SSHDroid (SSH server)
PuTTY.exe (SSH client)
Configurar SSHDroid
Install “SSHDroid” from android market to your phone this will turn your phone into a SSH server
For the first time you need to set-up a password to log-in shell. Default password is admin which may you have to change on first time
Setup Putty
Download PuTTY.exe for SSH Client on your windows PC, it comes in single executable file so you don’t need to install that just double click on that and PuTTY will start.
There is no need to setting up any thing in PuTTY.
Empecemos
First step is to running Wi-Fi and connect your android phone to target PC, then run SSHDroid server into your mobile phone, but before that make sure under the SSHDroid’s application window click Options -> “Require WiFi” is checked as seen on above pic screen 2. And then click “start” option.
Once SSH server is successfully started it will show IP address of your mobile phone in light sky color like this root@192.168.43.129 as seen on screen 4.
Take the IP “192.168.43.129” and type it to your PuTTY program’s (PC) host field and hit connect. Make sure port number is 22 as seen in second pic.
It will ask for certification click ok and then command line log-in window will appear, type “root” hit enter and then type the password for root user, default is “admin” as i mentioned before. After successful log-in you will be able to use Linux commands like ls, reboot -f, mkdir, find, etc.
Si su teléfono está conectado a Internet, también puede usar comandos de red como ping, wget, telnet, etc.
Fuente: - Cómo conectar el teléfono Android a la PC usando SSH y masilla