回答:
ターミナルエミュレータアプリの場合と同様に、Android Debug Bridge(ADB)シェルを使用して、電話機で基本的なLinuxコマンドを発行できます。インストールするには、次を実行する必要があります。
Settings -> About phone
、「ビルド番号」を7回タップします。これにより、開発者ツールが有効になりました。Developer options
、「システム」セクションの下に表示されるはずです。Developer options
、「Androidデバッグ」オプションを有効にOK
して、確認プロンプトをタップします。adb devices
adb shell
入力してEnterキーを押すと、電話の端末に接続されます。これで開始できます。ADBコマンドは、Googleのサイトのこちらにリストされています。シェルは、のようないくつかの基本的なLinuxのコマンドの提供ls
、cp
別のトピックである、などのほとんどのファイルやデバイス管理コマンドは、ルートが必要になることに注意してください(つまり、特権をします)。
Chahkによって記述されたADBバリアント(コンピューターに少なくともADBの最低限のインストールが必要)の代わりに、SSHサーバーアプリをデバイスにインストールできます(例として、SSHサーバー、DigiSSHD、サーバーアルティメットがありますが、これらに限定されません))。次にssh
、Linux / Macのコマンド、またはWindowsのPuTTYなどのツールを使用して、デバイス自体にターミナルアプリを使用しているかのようにデバイスに接続し、シェルコマンドを実行できます。
help/on-topic
最初に適切な場所で各ページを確認してください) 。
必要になるだろう
Your Android phone ( Rooted and with Wi-Fi functionality )
SSHDroid (SSH server)
PuTTY.exe (SSH client)
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
パテのセットアップ
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.
はじめましょう
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.
電話がインターネットに接続されている場合、ping、wget、telnetなどのネットワークコマンドも使用できます。