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 communication tool, or SSH.
This document describes how to log in to Core 3588E using SSH. For details about login using a serial communication tool and using the ADB tool, 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 power adapter packaged with Core 3588E
Steps
Step 1. Find the IP address of Core 3588E
Any device connected to a Local Area Network (LAN) is assigned an IP address. You can find your IP address either via the router device list or by running ifconfig in a terminal.
Step 2. Log in to Core 3588E using SSH
2.1 Run sudo ssh username@Core 3588E IP address
to log in, for example, sudo ssh mixtile@192.168.202.233
.
2.2 Input the password of your computer and then the password of your Core 3588E.
mia@MiadeMBP ~ % sudo ssh mixtile@192.168.202.233
Password:
mixtile@192.168.202.233's password:
Welcome to Ubuntu 22.04.3 LTS (GNU/Linux 5.10.160-rockchip aarch64)
* Documentation: https://help.ubuntu.com
* Management: https://landscape.canonical.com
* Support: https://ubuntu.com/advantage
Expanded Security Maintenance for Applications is not enabled.
91 updates can be applied immediately.
58 of these updates are standard security updates.
To see these additional updates run: apt list --upgradable
9 additional security updates can be applied with ESM Apps.
Learn more about enabling ESM Apps service at https://ubuntu.com/esm
Last login: Thu Dec 7 15:38:42 2023 from 192.168.210.76
To run a command as administrator (user "root"), use "sudo <command>".
See "man sudo_root" for details.
mixtile@mixtile-desktop:~$
What you can do next
After login to Core 3588E, you can perform operations based on your requirements, such as checking device information, installing or uninstalling software, editing configuration files, and starting or stoping services.
Check device information
cat /etc/os-release
cat /var/log/syslog
dmesg
Install or uninstall software
sudo apt update
sudo apt upgrade
sudo apt install [software name]
sudo apt uninstall [software name]
Edit configuration files
vi [file path]
Start or stop services
sudo systemctl start [service name]
sudo systemctl stop [service name]