Quero executar o terminal no meu dispositivo, no entanto, a tela pequena é muito inconveniente. Gostaria de saber se é possível executar o terminal no dispositivo Android real do PC?
Quero executar o terminal no meu dispositivo, no entanto, a tela pequena é muito inconveniente. Gostaria de saber se é possível executar o terminal no dispositivo Android real do PC?
Respostas:
Você pode usar o shell do Android Debug Bridge (ADB) para emitir comandos básicos do Linux no seu telefone, como faria em um aplicativo emulador de terminal. Para instalar, você precisará fazer o seguinte:
Settings -> About phone
e toque em "Número da versão" sete vezes. Isso ativou as ferramentas de desenvolvedor.Developer options
na seção "Sistema".Developer options
, ative a opção "Depuração do Android" e toque OK
no prompt de verificação.adb devices
adb shell
e pressione Enter, e você deverá estar conectado ao terminal do telefone.Isso deve ajudá-lo a começar. Os comandos do ADB estão listados no site do Google aqui . O shell fornece alguns comandos básicos do Linux ls
, como , cp
etc. Esteja ciente de que a maioria dos comandos de gerenciamento de arquivos e dispositivos exigirá root (ou seja, privilégios elevados), que é um tópico separado.
Como alternativa à variante ADB descrita por Chahk (que requer pelo menos uma instalação principal do ADB no seu computador), você pode instalar um aplicativo de servidor SSH no seu dispositivo (exemplos incluem, entre outros, SSH Server , DigiSSHD , Servers Ultimate ) Em seguida, você pode usar o ssh
comando no Linux / Mac, ou uma ferramenta como PuTTY no Windows, para conectar-se ao seu dispositivo e executar comandos do shell, como se estivesse usando um aplicativo de terminal no próprio dispositivo.
help/on-topic
primeiro as respectivas páginas onde melhor se encaixa) .
Você vai precisar
Your Android phone ( Rooted and with Wi-Fi functionality )
SSHDroid (SSH server)
PuTTY.exe (SSH client)
Configuração 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
Putty de instalação
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.
Vamos começar
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.
se o telefone estiver conectado à internet, você também poderá usar comandos de rede como ping, wget, telnet etc.
Fonte: - Como conectar o telefone Android ao PC usando SSH e massa de vidraceiro