# # 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"