From 3a516cf1709f97b05c522429543410d04c43a641 Mon Sep 17 00:00:00 2001 From: Paul Duncan Date: Mon, 9 Jun 2025 06:45:24 -0400 Subject: add static/files/posts/armbian-on-odroid-n2l --- .../files/posts/armbian-on-odroid-n2l/n2l-1024.png | Bin 0 -> 516107 bytes .../posts/armbian-on-odroid-n2l/n2l-1024.webp | Bin 0 -> 71378 bytes static/files/posts/armbian-on-odroid-n2l/n2l.jpg | Bin 0 -> 5520816 bytes .../odroid-n2l-root_not_logged_in_yet.txt | 44 +++++++++++++++++++++ 4 files changed, 44 insertions(+) create mode 100644 static/files/posts/armbian-on-odroid-n2l/n2l-1024.png create mode 100644 static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp create mode 100644 static/files/posts/armbian-on-odroid-n2l/n2l.jpg create mode 100644 static/files/posts/armbian-on-odroid-n2l/odroid-n2l-root_not_logged_in_yet.txt diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png new file mode 100644 index 0000000..4809ded Binary files /dev/null and b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png differ diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp new file mode 100644 index 0000000..4a91338 Binary files /dev/null and b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp differ diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l.jpg b/static/files/posts/armbian-on-odroid-n2l/n2l.jpg new file mode 100644 index 0000000..8553d86 Binary files /dev/null and b/static/files/posts/armbian-on-odroid-n2l/n2l.jpg differ diff --git a/static/files/posts/armbian-on-odroid-n2l/odroid-n2l-root_not_logged_in_yet.txt b/static/files/posts/armbian-on-odroid-n2l/odroid-n2l-root_not_logged_in_yet.txt new file mode 100644 index 0000000..2f03dae --- /dev/null +++ b/static/files/posts/armbian-on-odroid-n2l/odroid-n2l-root_not_logged_in_yet.txt @@ -0,0 +1,44 @@ +# +# armbian automatic first boot configuration based on the documentation +# at https://docs.armbian.com/User-Guide_Autoconfig/ +# +# NOTE: This configuration did NOT work as expected. +# +# In particular, it had the following errors: +# +# - did not set the root password. instead the root password was "1234" +# - did not set the user password +# - generated a broken network configuration which did not work after +# the second boot +# + +# Network Settings +PRESET_NET_CHANGE_DEFAULTS="1" + +## Ethernet +PRESET_NET_ETHERNET_ENABLED="1" # Ignored due to WiFi + +## WiFi +PRESET_NET_WIFI_ENABLED="1" +PRESET_NET_WIFI_SSID="MY WIFI SSID" +PRESET_NET_WIFI_KEY="MY WIFI PASSWORD" +PRESET_NET_WIFI_COUNTRYCODE="US" +PRESET_CONNECT_WIRELESS="y" +## Static IP +PRESET_NET_USE_STATIC="0" + +# System +SET_LANG_BASED_ON_LOCATION="y" +PRESET_LOCALE="en_US.UTF-8" +PRESET_TIMEZONE="US/Eastern" + +# Root +PRESET_ROOT_PASSWORD="MY ROOT PASSWORD" +PRESET_ROOT_KEY="" + +# User +PRESET_USER_NAME="someuser" +PRESET_USER_PASSWORD="MY USER PASSWORD" +PRESET_USER_KEY="URL TO SSH KEY" +PRESET_DEFAULT_REALNAME="Some User" +PRESET_USER_SHELL="bash" -- cgit v1.2.3