「Android Debug Bridge」の版間の差分
Kusanaginoturugi (トーク | 投稿記録) |
Kusanaginoturugi (トーク | 投稿記録) (→動作するか確認: 不足している記述を英語版より転載) |
||
(同じ利用者による、間の3版が非表示) | |||
57行目: | 57行目: | ||
使用しているユーザーを {{ic|adbusers}} [[ユーザーとグループ|グループ]]に追加することで {{ic|adb}} デバイスにアクセスできるようになります。 |
使用しているユーザーを {{ic|adbusers}} [[ユーザーとグループ|グループ]]に追加することで {{ic|adb}} デバイスにアクセスできるようになります。 |
||
− | === |
+ | ==== 動作するか確認 ==== |
+ | udev ルールを設定したら、デバイスのプラグを一度抜いてから再接続してください。 |
||
− | After you have setup the udev rules, unplug your device and replug it. |
||
+ | 次のコマンドを実行すれば: |
||
− | After running: |
||
$ adb devices |
$ adb devices |
||
+ | 以下のように表示されるはずです: |
||
− | you should see something like: |
||
List of devices attached |
List of devices attached |
||
76行目: | 76行目: | ||
$ adb devices |
$ adb devices |
||
− | === |
+ | === ファイル転送 === |
− | |||
− | You can now use adb to transfer files between the device and your computer. To transfer files to the device, use |
||
+ | adb を使ってデバイスとコンピュータ間でファイルを転送することができます。ファイルをデバイスに送信するには次のコマンドを使用: |
||
$ adb push ''<what-to-copy>'' ''<where-to-place>'' |
$ adb push ''<what-to-copy>'' ''<where-to-place>'' |
||
+ | ファイルを受信するには: |
||
− | To transfer files from the device, use |
||
− | |||
$ adb pull ''<what-to-pull>'' ''<where-to-place>'' |
$ adb pull ''<what-to-pull>'' ''<where-to-place>'' |
||
− | + | [[#Tools building on ADB]] も参照してください。 |
|
=== Backup and restore === |
=== Backup and restore === |
2020年8月6日 (木) 09:45時点における最新版
Android Debug Bridge (ADB) はコマンドラインツールで、アプリのインストール、アンインストール、デバッグ、ファイルの転送、デバイスのシェルへのアクセスなどを行うことができます。
目次
Installation
ADB is part of the Platform-Tools SDK package and the android-tools package.
Usage
実機に接続
ADB で Arch 下の実機やスマートフォンに接続するには、以下を実行する必要があります:
- 適当な
/dev/
エントリにデバイスを接続するには android-udev もインストールする必要があります。 - USB で Android デバイスを接続する。
- スマートフォンやデバイスで USB デバッグを有効にする。
- Jelly Bean (4.2) 以降:
設定 --> 端末情報
を開いてデベロッパーになったというポップアップが表示されるまで “Build Number” をタップ (約10回連打)。そして設定 --> 開発者向けオプション --> USB デバッグ
から USB デバッグを有効にする。デバイスはフィンガープリントを使ってコンピュータに接続しても良いか聞いてきます。永続的に許可すると$HOME/.android/adbkey.pub
がデバイスの/data/misc/adb/adb_keys
フォルダにコピーされます。 - 古いバージョン:
設定 --> アプリケーション --> 開発 --> USB デバッグ
から有効にできます。このオプションにチェックを入れた後はスマートフォンを再起動して USB デバッグを有効にしてください。
- Jelly Bean (4.2) 以降:
ADB がデバイスを認識したら (IDE からアクセスできる状態)、完了です。認識しない場合は以下を見て下さい。
デバイス ID を確かめる
それぞれの Android デバイスには USB ベンダー・プロダクト ID が存在します。例えば HTC Evo なら:
vendor id: 0bb4 product id: 0c8d
デバイスを接続して次を実行してください:
$ lsusb
以下のように表示されるはずです:
Bus 002 Device 006: ID 0bb4:0c8d High Tech Computer Corp.
udev ルールを追加する
android-udev (または android-udev-gitAUR) をインストールするか手動で Android developer のルールを使うか、あるいは以下のテンプレートを使って udev ルールを作って下さい。[VENDOR ID] と [PRODUCT ID] はあなたの ID に置き換えて下さい。ルールを /etc/udev/rules.d/51-android.rules
にコピー:
/etc/udev/rules.d/51-android.rules
SUBSYSTEM=="usb", ATTR{idVendor}=="[VENDOR ID]", MODE="0660", GROUP="adbusers" SUBSYSTEM=="usb",ATTR{idVendor}=="[VENDOR ID]",ATTR{idProduct}=="[PRODUCT ID]",SYMLINK+="android_adb" SUBSYSTEM=="usb",ATTR{idVendor}=="[VENDOR ID]",ATTR{idProduct}=="[PRODUCT ID]",SYMLINK+="android_fastboot"
そして、新しい udev ルールをリロードするために、次を実行:
# udevadm control --reload-rules
使用しているユーザーを adbusers
グループに追加することで adb
デバイスにアクセスできるようになります。
動作するか確認
udev ルールを設定したら、デバイスのプラグを一度抜いてから再接続してください。
次のコマンドを実行すれば:
$ adb devices
以下のように表示されるはずです:
List of devices attached HT07VHL00676 device
If adb still does not detect the device after plugging your device back in, kill and restart the adb server as root and check devices again:
# adb kill-server # adb start-server $ adb devices
ファイル転送
adb を使ってデバイスとコンピュータ間でファイルを転送することができます。ファイルをデバイスに送信するには次のコマンドを使用:
$ adb push <what-to-copy> <where-to-place>
ファイルを受信するには:
$ adb pull <what-to-pull> <where-to-place>
#Tools building on ADB も参照してください。
Backup and restore
You can also backup and restore your device with adb. Moreover, no root is required to follow the process. The commands below led to backup your device to a single file which can also be successively restored.
The command to create a backup is
$ adb backup -apk -shared -all -f backupFileName.ab
The command parameters list is
adb backup [-f <file>] [-apk|-noapk] [-shared|-noshared] [-all] [-system|nosystem] [<packages...>]
Then confirm the process on your device's display and provide a password whether a backup password has been set before.
The command to restore a previous backup is
$ adb restore mybackup.ab
Tools building on ADB
- adbfs-rootless-gitAUR - a FUSE filesystem over ADB
- adb-sync (available as adb-sync-gitAUR) – a tool to synchronize files between a PC and an Android device using the ADB protocol.
- AndroidScreencast (available as androidscreencast-binAUR) – view and control your Android device from a PC (via ADB).
- logcat-colorAUR - a colorful and highly configurable alternative to the standard
adb logcat
command. - scrcpy (available as scrcpyAUR) – display and control your Android device
Troubleshooting
Empty device list
A possible cause for your device not showing up is not having enabled USB debugging on your device. You can do that by going to Settings > Applications > Development and enabling USB debugging. Since Android 4.2 (Jelly Bean), the development menu is hidden; to enable it go to Settings > About phone and tap Build number 7 times.
No permissions error
If the device shows up with a "no permissions" label, it probably has a different vendor/product ID with respect to the ones collected by android-udev.
This can happen for instance when the device uses a custom ROM, or when it is switched from MTP to USB tethering mode, sideload and/or fastboot mode. Verify the actual device's ID with lsusb and add the appropriate udev rules as described above.