diff options
author | Paul Duncan <pabs@pablotron.org> | 2025-06-09 06:45:24 -0400 |
---|---|---|
committer | Paul Duncan <pabs@pablotron.org> | 2025-06-09 06:45:24 -0400 |
commit | 3a516cf1709f97b05c522429543410d04c43a641 (patch) | |
tree | f3e0ab7fab191c30c73759365668fed5ad08f1d8 | |
parent | 4c1af13598b36aaf184dd0697d024c9c0cb8eb7f (diff) | |
download | pablotron.org-3a516cf1709f97b05c522429543410d04c43a641.tar.xz pablotron.org-3a516cf1709f97b05c522429543410d04c43a641.zip |
add static/files/posts/armbian-on-odroid-n2l
-rw-r--r-- | static/files/posts/armbian-on-odroid-n2l/n2l-1024.png | bin | 0 -> 516107 bytes | |||
-rw-r--r-- | static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp | bin | 0 -> 71378 bytes | |||
-rw-r--r-- | static/files/posts/armbian-on-odroid-n2l/n2l.jpg | bin | 0 -> 5520816 bytes | |||
-rw-r--r-- | static/files/posts/armbian-on-odroid-n2l/odroid-n2l-root_not_logged_in_yet.txt | 44 |
4 files changed, 44 insertions, 0 deletions
diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png Binary files differnew file mode 100644 index 0000000..4809ded --- /dev/null +++ b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.png diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp Binary files differnew file mode 100644 index 0000000..4a91338 --- /dev/null +++ b/static/files/posts/armbian-on-odroid-n2l/n2l-1024.webp diff --git a/static/files/posts/armbian-on-odroid-n2l/n2l.jpg b/static/files/posts/armbian-on-odroid-n2l/n2l.jpg Binary files differnew file mode 100644 index 0000000..8553d86 --- /dev/null +++ b/static/files/posts/armbian-on-odroid-n2l/n2l.jpg 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" |