First boot of the OrangePi Zero with Armbian 看全部

Hi,

As I told there, I don't know how to log on the Zero after booting with Armbian.
nmap tells me no port is opened.
This version of the kernel does not handle the video output, so I don't have any log message on screen either.
Any idea (v1.4 of the board)?
Thanks.

  • 推荐 cg0123
  • 2018-7-19 00:30:34
Find the local ip of your orangepi zero connected to ethernet by going to your router's dashboard page (192.168.1.1 usually), it will be something like 192.168.1.x, use this ip in the software putty to connect to your pi, once connected login with the default user:password which is root:1234, then if you want to connect to your wifi do this :

  1. sudo cp /etc/network/interfaces /etc/network/interfacesoriginal
  1. sudo rm /etc/network/interfaces
  1. sudo nano /etc/network/interfaces


copy this, and paste it into the pi  :
  1. auto lo
  2. iface lo inet loopback

  3. auto eth0
  4. allow-hotplug eth0
  5. iface eth0 inet dhcp

  6. allow-hotplug wlan0
  7. iface wlan0 inet manual
  8. wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
  9. iface default inet dhcp


do :
Ctrl + O
Enter
Ctrl + X

then
  1. sudo nano /etc/wpa_supplicant/wpa_supplicant.conf


and copy paste this :
  1. ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev
  2. update_config=1

  3. network={
  4. ssid="you wifi ssid name"
  5. psk="your wifi password"
  6. }

  7. network={
  8. ssid="orangepi"
  9. key_mgmt=NONE
  10. }


then do :
Ctrl + O
Enter
Ctrl + X

and
  1. sudo reboot


BTW you can paste by right-clicking in the putty console