please choosego to mobile | Continue to access the PC version
View: 8893|Reply: 1

First boot of the OrangePi Zero with Armbian

[Copy link]

13

threads

93

posts

679

credits

Senior member

Rank: 4

credits
679
Published in 2018-6-1 21:45:19 | Show all floors |Read mode
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.

2

threads

4

posts

30

credits

Novice

Rank: 1

credits
30
Published in 2018-7-19 00:30:34 | Show all floors
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
Copy code
  1. sudo rm /etc/network/interfaces
Copy code
  1. sudo nano /etc/network/interfaces
Copy code


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
Copy code


do :
Ctrl + O
Enter
Ctrl + X

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


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. }
Copy code


then do :
Ctrl + O
Enter
Ctrl + X

and
  1. sudo reboot
Copy code


BTW you can paste by right-clicking in the putty console
You need to log in before you can reply login | Register

Points Rule

Quick reply Top Return list