This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| raspberry_ubuntu_server [2020/12/06 08:59] – [Ubuntu server 64bit] herwarth | raspberry_ubuntu_server [2020/12/06 09:49] (current) – herwarth | ||
|---|---|---|---|
| Line 7: | Line 7: | ||
| Use Etcher or whatever to install the downloaded zip on a SD card. | Use Etcher or whatever to install the downloaded zip on a SD card. | ||
| + | ==== Update and initial settings ==== | ||
| + | Default user/pass is ubuntu/ | ||
| + | < | ||
| + | apt update | ||
| + | apt upgrade -y | ||
| + | </ | ||
| + | ===Timezone and time settings=== | ||
| + | < | ||
| + | dpkg-reconfige tzdata | ||
| + | </ | ||
| + | <code - / | ||
| + | [Time] | ||
| + | NTP=172.16.0.254 | ||
| + | # | ||
| + | # | ||
| + | # | ||
| + | </ | ||
| + | ===Remove unnecessary packages=== | ||
| + | < | ||
| + | apt purge cloud-init | ||
| + | rm -rf / | ||
| + | rm -rd / | ||
| + | rm / | ||
| + | </ | ||
| + | <code - / | ||
| + | network: | ||
| + | version: 2 | ||
| + | renderer: networkd | ||
| + | ethernets: | ||
| + | eth0: | ||
| + | dhcp4: true | ||
| + | </ | ||
| + | < | ||
| + | apt purge apparmor | ||
| + | </ | ||
| + | < | ||
| + | hostnamectl set-hostname raspberry | ||
| + | reboot | ||
| + | </ | ||
| + | {{tag> | ||