Skip to content

Instantly share code, notes, and snippets.

@namuyan
Last active October 31, 2018 15:42
Show Gist options
  • Save namuyan/9a4983983c88340681904c40d0dcebfc to your computer and use it in GitHub Desktop.
Save namuyan/9a4983983c88340681904c40d0dcebfc to your computer and use it in GitHub Desktop.
BananaPi-M3 の使用方法

Frequensy

熱いので周波数下げるべし

Wifi

ぶっちゃけIP取得まで確認できたが接続できなかった。

  1. sudo sh -c 'wpa_passphrase SSID PASSWORD >> /etc/wpa_supplicant/wpa_supplicant.conf'
  2. wpa_supplicant -i wlan0 -c /etc/wpa_supplicant/wpa_supplicant.conf
  3. sudo modprobe bcmdhd
  4. iwlist wlan0 scan
  5. ifconfig wlan0

or

  1. nmtui-connect

EMMCが見えない時

Update your image

EMMC書き込み

USBメモリをマウントしそこで作業する

  1. Gooogle drive よりWget方法
  2. Image
  3. Download FILE_ID=1Jk3vMPAgjfeZQZFcTBNSZo5kM6zJvgvP & FILE_NAME=2018-01-15-ubuntu-16.04-server-v1.0-bpi-m3mst-sd-emmc.img.zip && curl -sc /tmp/cookie "https://drive.google.com/uc?export=download&id=${FILE_ID}" > /dev/null && CODE="$(awk '/_warning_/ {print $NF}' /tmp/cookie)" && curl -Lb /tmp/cookie "https://drive.google.com/uc?export=download&confirm=${CODE}&id=${FILE_ID}" -o ${FILE_NAME}
  4. Write sudo dd if=2018-01-15-ubuntu-16.04-server-v1.0-bpi-m3mst-sd-emmc.img of=/dev/mmcblk1 bs=10MB
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment