Please enable javascript, or click here to visit my ecommerce web site powered by Shopify.
Jump to: navigation, search

Rockpi4/dev/adb

< Rockpi4‎ | dev
    ROCK Pi 4 >  Development >  Using adb 

Description

ADB is enabled in ROCK Pi 4 all Android version and official Linux distributions. To access ADB, you need a USB male A to A cable(Upper USB3 port) and turn the USB OTG switch to Device mode.

You'd better follow the installation steps.

Installation

Windows

Refer Windows ADB

Linux

Refer Linux ADB

ADB Usage

When you have adb driver installed on PC, below are some common used adb commands:

Check adb devices

 $ adb devices
 List of devices attached 
 0123456789ABCDEF	device

Login/Shell

 $ adb shell
 # 

And type /bin/bash followed by Enter key to switch to bash shell.

 $ adb shell
 # /bin/bash
 root@rockpi4:/# 
 root@rockpi4:/# 

Transmit files from PC to ROCK Pi 4

 $ adb push <local path> <remote path>

Example:

On PC, input the following in Terminal

 $ adb push /tmp/meet-rockpi4.md /home/rock
 0 KB/s (26 bytes in 0.045s)

Check on ROCK Pi 4

 root@rockpi4:/home/rock# cat meet-rockpi4.md 
 How do you do! ROCK Pi 4!

Transmit files from ROCK Pi 4 to PC

 $ adb pull <remote path> <local path>

Example:

 $ adb pull /home/rock/meet-pc.md /tmp/
 0 KB/s (19 bytes in 0.086s)
 
 $ cat /tmp/meet-pc.md 
 How do you do! PC!

FAQs

Troubleshooting

If adb device is not detected on host PC, try to use serial console first and try the following:

Firstly, update rockchip-overlay and kernel packages.

 $ sudo apt-get install -y rockchip-overlay # >= 2.8
 $ sudo apt-get install -y linux-4.4-rock-pi-4-latest # >= 4.4.154-115-rockchip

Secondly, install rockchip-adbd package.

 $ sudo apt-get install -y rockchip-adbd # >= 0.3

Finally, start rockchip service

 $ sudo systemctl start rockchip-adbd

Usage of rockchip-adbd service

Start rockchip-adbd service

 $ sudo systemctl start rockchip-adbd

Stop rockchip-adbd service

 $ sudo systemctl stop rockchip-adbd

Reload rockchip-adbd service

 $ sudo systemctl reload rockchip-adbd
 or
 $ sudo systemctl restart rockchip-adbd


If you still have issue with adb, start a new post on the forum. https://forum.radxa.com/c/dev