Banana Pi M2 Zero - msandholz/RaspberryPi-Tutorials GitHub Wiki

Information

Hardware-Specification

The Banana Pi BPI-M2 Zero has the following Specification: http://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO

Getting Started: http://wiki.banana-pi.org/Getting_Started_with_M2_Zero

Testing BananaPi: https://haarer.github.io/linux/embedded/arm/allwinner/%22banana/pi/zero%22/2018/03/03/testing-banana-pi-m2-zero.html

Prepare Raspberry Pi

Building a LAN Cable

Operating System

  1. Download Image '2020-04-10-raspbian-jessie-ap6212-bpi-m2z-sd-emmc' and push it to SD-Card

Available Linux distributions: http://wiki.banana-pi.org/Banana_Pi_BPI-M2_ZERO#Linux OS-Images: https://drive.google.com/drive/folders/1uRE8BppgDjK2TXH5kUIJ1_YrbAAW3HKF

Setup WiFi client

Use commands to setup WiFi client:

  1. ip link set wlan0 up
  2. iw dev wlan0 scan | grep SSID
  3. vim /etc/wpasupplicant/wpa_supplicant.conf
    network={    
      ssid="ssid"    
      psk="password"    
      priority=1 
    }
    
  4. wpa_supplicant -iwlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
  5. dhclient wlan0