Voglio eseguire il terminale sul mio dispositivo, tuttavia il piccolo schermo è molto scomodo. Mi chiedo se è possibile eseguire il terminale su un vero dispositivo Android da PC?
Voglio eseguire il terminale sul mio dispositivo, tuttavia il piccolo schermo è molto scomodo. Mi chiedo se è possibile eseguire il terminale su un vero dispositivo Android da PC?
Risposte:
Puoi utilizzare la shell Android Debug Bridge (ADB) per emettere comandi di base di Linux sul tuo telefono, proprio come faresti in un'app di emulazione di terminale. Per installare è necessario effettuare le seguenti operazioni:
Settings -> About phone
e tocca "Costruisci numero" sette volte. Ciò ha abilitato gli strumenti per sviluppatori.Developer options
nella sezione "Sistema".Developer options
, abilita l'opzione "Debug Android", quindi tocca OK
il prompt di verifica.adb devices
adb shell
e premi Invio, e dovresti essere connesso al terminale del telefono.Questo dovrebbe farti cominciare. I comandi ADB sono elencati sul sito di Google qui . La shell fornisce alcuni comandi Linux di base come ls
, cp
ecc. Tenere presente che la maggior parte dei comandi di gestione di file e dispositivi richiede root (ovvero privilegi elevati), che è un argomento separato.
In alternativa alla variante ADB descritta da Chahk (che richiede almeno un'installazione minima di ADB sul tuo computer), puoi installare un'app server SSH sul tuo dispositivo (gli esempi includono, ma non sono limitati a, Server SSH , DigiSSHD , Server Ultimate ). Quindi è possibile utilizzare il ssh
comando su Linux / Mac o uno strumento come PuTTY su Windows per connettersi al dispositivo ed eseguire i comandi della shell, come se si stesse utilizzando un'app terminale sul dispositivo stesso.
help/on-topic
pagine di risposta dove si adatta meglio) .
Avrai bisogno
Your Android phone ( Rooted and with Wi-Fi functionality )
SSHDroid (SSH server)
PuTTY.exe (SSH client)
Installa 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.
Iniziamo
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 il tuo telefono è connesso a internet puoi anche usare i comandi di rete come ping, wget, telnet ecc.
Fonte: - Come collegare il telefono Android al PC usando SSH e stucco