Login Using ADB

After setting up connections of Core 3588E, you can log in to it on Windows, macOS, or Ubuntu using Android Debug Bridge (ADB), a serial debugging tool, or via SSH.

ADB is a command-line tool that enables a variety of functions, such as tracking system logs, uploading files and downloading files.

This document describes how to log in to Core 3588E using ADB. For details about login using a serial communication tool and via SSH, refer to the following documents:

Preparations

  • A Core 3588E board
  • A carrier board that is compatible with Jetson TX2 NX (Leeptop A206 is used in this document)
  • A computer: Windows, macOS, or Ubuntu
  • A micro USB cable
  • A power adapter packaged with Core 3588E

Steps

Step 1. Connect hardware

Connect one end of the micro USB cable to Core 3588E’s micro USB port and the other end to your computer.

Step 2. Install ADB

Install ADB according to the operating system running on your computer.

On Windows

1. Download ADB and unzip the file to a customized installation directory, such as C:\adb\platform-tools.

2. Press Windows+R to open Run. Then enter sysdm.cpl and press Enter.

3. Choose Advanced > Environment Variables > System Variables > Path.

4. Create a directory C:\adb\platform-tools under Path.

On macOS

1. (Optional) Install Homebrew if it is not installed yet by running the following command:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

2. Install ADB by running the following command:

brew install android-platform-tools

On Ubuntu

sudo apt update
sudo apt install android-tools-adb

Step 3. Verify ADB connection status

Run either of the following ADB commands to verify whether the ADB connection is successful:

adb devices
List of devices attached
04998310c6679ec2    device
adb shell
root@mixtile-desktop:/#

Other ADB commands

Besides adb devices and adb shell, you can interact with Core 3588E through ADB by running other ADB commands, such as adb push, adb pull, and adb reboot.

adb push

You can copy files from a local computer to Core 3588E by running this command. The format is as follows:

adb push <local> <remote>

For example:

adb push /Users/mia/Documents/test_1.txt /home/mixtile

This copies the test_1.txt file from a local computer to the mixtile folder of Core 3588E.

adb pull

You can copy files from Core 3588E to a local computer by running this command. The format is as follows:

adb pull <remote> <local> 

For example:

adb pull /home/mixtile/test_2.txt  /Users/mia/Downloads

This copies the test_2.txt file from Core 3588E to the Downloads folder of a local computer.

adb reboot

You can remotely reboot Core 3588E by running this command.

adb reboot

When upgrading the firmware of Core 3588E, you can enable it to enter Loader mode by adding the loader parameter:

adb reboot loader

For details about upgrading the firmware of Core 3588E in Loader mode, see Upgrade firmware in Loader mode.

Was this article helpful?

Related Articles