Ubuntu/Raspberry Pi: Difference between revisions
Jump to navigation
Jump to search
Line 71: | Line 71: | ||
| valign="top" | | | valign="top" | | ||
* [https://blogs.oracle.com/javamagazine/post/java-arm64-aarch64-development The AArch64 hardware, software, cloud & JDK] | |||
* [https://askubuntu.com/questions/261824/ CloudInit to change the default <code>ubuntu</code> user] | * [https://askubuntu.com/questions/261824/ CloudInit to change the default <code>ubuntu</code> user] | ||
* [https://gist.github.com/ricardozanini/fa65e485251913e1467837b1c5a8ed28 Gist Install GraalVM CE on Linux] | * [https://gist.github.com/ricardozanini/fa65e485251913e1467837b1c5a8ed28 Gist Install GraalVM CE on Linux] |
Revision as of 09:20, 14 November 2021
Network Config: ls -lah /Volumes/system-boot/|grep network-config
cat <<EOF > /Volumes/system-boot/network-config
version: 2
ethernets:
eth0:
dhcp4: true
optional: true
wifis:
wlan0:
dhcp4: true
optional: true
access-points:
"ChorkeOrg_2.4GHz":
password: "sadaqah!"
"ChorkeOrg":
password: "sadaqah!"
EOF
|
User Data: ls -lah /Volumes/system-boot/|grep user-data
cat <<EOF > /Volumes/system-boot/user-data
# Some additional examples are provided in comments below the default
# configuration.
# On first boot, set the (default) pi user's password to "ubuntu" and
# expire user passwords
chpasswd:
expire: true
list:
- pi:ubuntu
# Enable password authentication with the SSH daemon
ssh_pwauth: true
power_state:
mode: reboot
EOF
|
| |
ls -lah /Volumes/system-boot/{.fseventsd,.Spotlight-V100}
rm -rf /Volumes/system-boot/{.fseventsd,.Spotlight-V100}
|