SSHを使ったログイン

You can log in to Mixtile Edge 2 Kit on Windows, macOS, or Ubuntu using Android Debug Bridge (ADB), a serial communication tool, or SSH.

This document describes how to log in to Mixtile Edge 2 Kit using SSH. 

準備

  • A computer that runs Windows, macOS, or Linux
  • A Mixtile Edge 2 Kit
  • イーサネットケーブル

ステップ

Step 1. Find the IP address of Mixtile Edge 2 Kit

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

Step 2. Log in to Mixtile Edge 2 Kit using SSH

2.1 ラン ssh username@edge2-IP-address を使ってログインすることができる、 ssh mixtile@192.168.1.183.

2.2 Input the password of Mixtile Edge 2 Kit (defaults to mixtile).

ssh mixtile@192.168.1.183 # replace the IP address with the actual one.
mixtile@192.168.1.183's password: # enter the password

What you can do next

After logging into Mixtile Edge 2, you can perform operations based on your requirements, such as checking device information, installing or uninstalling software, editing configuration files, and starting or stopping 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]
この記事は役に立ちましたか?

関連記事