SSHを使ったログイン

その後 setting up connections of Blade 3, you can log in to it on Windows, macOS, or Ubuntu using Android Debug Bridge (ADB), a serial communication tool, or SSH.

にログインする方法を説明します。 Blade 3 using SSH. For details about login using a serial communication tool and using the ADB tool, refer to the following documents:

準備

  • A computer: Windows, macOS, or Ubuntu
  • ブレード3ボード
  • イーサネットケーブル

ステップ

Step 1. Find the IP address of Blade 3

ローカルエリアネットワーク(LAN)に接続されているデバイスには、IPアドレスが割り当てられています。IPアドレスは、ルーターのデバイスリストから、または次のコマンドを実行することで確認できます。 ifconfig ターミナルで。

Step 2. Log in to Blade 3 using SSH

2.1 ラン sudo ssh username@Blade 3 IP address を使ってログインすることができる、 sudo ssh mixtile@192.168.202.193.

2.2 Input the password of Blade 3 (defaults to mixtile).

mia@MiadeMacBook-Pro ~ % sudo ssh mixtile@192.168.202.193
The authenticity of host '192.168.202.193 (192.168.202.193)' can't be established.
ED25519 key fingerprint is SHA256:N/EmGvdwXqG6diDsrI4Jp8r8GMglK6wWcy6G5CJTITM.
This key is not known by any other names
Are you sure you want to continue connecting (yes/no/[fingerprint])? yes
Warning: Permanently added '192.168.202.193' (ED25519) to the list of known hosts.
mixtile@192.168.202.193's password: 
Linux blade3 5.10.66 #1 SMP Fri May 5 18:48:27 CST 2023 aarch64

The programs included with the Debian GNU/Linux system are free software;
the exact distribution terms for each program are described in the
individual files in /usr/share/doc/*/copyright.

Debian GNU/Linux comes with ABSOLUTELY NO WARRANTY, to the extent
permitted by applicable law.
Last login: Mon Dec 18 10:05:29 2023 from 192.168.202.193
mixtile@blade3:~$ 

次にできること

After login to Blade 3, 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.

デバイス情報の確認

cat /etc/os-release
cat /var/log/syslog
dmesg

ソフトウェアのインストールまたはアンインストール

sudo apt update
sudo apt upgrade
sudo apt install [ソフトウェア名]
sudo apt uninstall [ソフトウェア名].

設定ファイルの編集

vi [ファイルパス]

サービスの開始または停止

sudo systemctl start [サービス名].
sudo systemctl stop [サービス名].
この記事は役に立ちましたか?

関連記事