1 installing the OS


Orange pi zreo2

Install Debian

Download etcher

Install minicom

sudo apt-get install minicom
Copy the code

Get port number

ls /dev/tty*
Copy the code

Connected to a serial port

sudo minicom -D /dev/ttyUSB0
Copy the code

If a serial port permission problem occurs

sudo usermod -a -G dialout $USER
Copy the code
sudo reboot
Copy the code

Default User password

User name: root Password: orangepiCopy the code

Connect the WIFI

nmtui
Copy the code

Obtaining an IP Address

ifconfig
Copy the code

Use Remmina software to connect to SSH

Updating software Packages

sudo apt-get update

sudo apt-get upgrade
Copy the code