Metainformationen zur Seite
Unterschiede
Hier werden die Unterschiede zwischen zwei Versionen angezeigt.
| Beide Seiten der vorigen RevisionVorhergehende ÜberarbeitungNächste Überarbeitung | Vorhergehende Überarbeitung | ||
| odroid:hc4:installation [2022/01/05 17:49] – hossie | odroid:hc4:installation [2022/01/31 14:19] (aktuell) – hossie | ||
|---|---|---|---|
| Zeile 1: | Zeile 1: | ||
| ====== Installation ====== | ====== Installation ====== | ||
| + | |||
| + | ===== Allgemein ===== | ||
| + | * [[https:// | ||
| ===== Normales Ubuntu von Odroid ===== | ===== Normales Ubuntu von Odroid ===== | ||
| - | [[http:// | + | * [[http:// |
| <code bash>dd if=ubuntu-XXX.img of=/dev/sdX bs=4M status=progress oflag=sync</ | <code bash>dd if=ubuntu-XXX.img of=/dev/sdX bs=4M status=progress oflag=sync</ | ||
| ===== ArchLinuxARM ===== | ===== ArchLinuxARM ===== | ||
| Zeile 8: | Zeile 11: | ||
| * [[http:// | * [[http:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| <code bash>dd if=ubuntu-XXX.img of=/dev/sdX bs=512 count=264192 status=progress oflag=sync | <code bash>dd if=ubuntu-XXX.img of=/dev/sdX bs=512 count=264192 status=progress oflag=sync | ||
| Zeile 26: | Zeile 34: | ||
| mount /dev/sdX1 /mnt | mount /dev/sdX1 /mnt | ||
| blkid /dev/sdX2 | blkid /dev/sdX2 | ||
| - | vi /mnt/boot/ini | + | vi /mnt/boot.ini |
| </ | </ | ||
| < | < | ||
| <code bash> | <code bash> | ||
| + | First Boot: | ||
| + | <code bash> | ||
| + | pacman-key --init | ||
| + | pacman-key --populate archlinuxarm | ||
| + | pacman -Sy | ||
| + | pacman -S wget | ||
| + | wget https:// | ||
| + | pacman -U archlinuxdroid-repo-1.1-1-aarch64.pkg.tar.zst | ||
| + | rm archlinuxdroid-repo-1.1-1-aarch64.pkg.tar.zst | ||
| + | pacman -Sy | ||
| + | passwd alarm | ||
| + | passwd | ||
| + | echo " | ||
| + | systemctl restart sshd | ||
| + | systemctl mask systemd-journald-audit.socket | ||
| + | pacman -S chrony | ||
| + | systemctl enable chronyd --now | ||
| + | systemctl mask systemd-timesyncd | ||
| + | timedatectl set-timezone XXX | ||
| + | mkdir ~/ | ||
| + | mv /boot/* ~/ | ||
| + | echo ' | ||
| + | mount /boot | ||
| + | fdisk / | ||
| + | systemctl reboot | ||
| + | resize2fs / | ||
| + | pacman -S bash-completion man-db uboot-tools | ||
| + | mv / | ||
| + | pacman -Rn linux-aarch64 | ||
| + | mv / | ||
| + | pacman -Su | ||
| + | rm / | ||
| + | systemctl reboot | ||
| + | </ | ||
| + | ===== Armbian (Ubuntu) ===== | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | <code bash>dd if=Armbian_XXX.img of=/dev/sdX bs=4M status=progress oflag=sync</ | ||
| + | <code bash>apt remove unattended-upgrades networkd-dispatcher --purge | ||
| + | systemctl disable smartd | ||
| + | systemctl disable vnstat | ||
| + | rm / | ||
| + | sed -i ' | ||
| + | armbian-config #Kernel update | ||
| + | echo " | ||
| + | timedatectl set-timezone XXX | ||
| + | apt update | ||
| + | apt dist-upgrade -V | ||
| + | apt autoremove --purge | ||
| + | apt clean | ||
| + | systemctl reboot | ||
| + | </ | ||