# 2023-09 Alpine Baremetal # basics and beyond as in https://wiki.alpinelinux.org/wiki/Installation # vi /etc/apk/repositories apk -U upgrade apk add bash vim vim /etc/passwd vim /etc/apk/repositories # from stable to edge setup-timezone -z Europe/Helsinki reboot setup-xorg-base apk add alacritty dbus elogind firefox jwm lightdm-gtk-greeter polkit-elogind xfce4 # # # start and make fancyness permanent # rc-service dbus start rc-update add dbus setup-devd udev rc-service lightdm start rc-update add lightdm rc-service elogind start rc-update add elogind # # # everyday convenience and most basic C development # apk add adwaita-icon-theme adwaita-xfce-icon-theme bat bc curl gcc geany geeqie \ git graphviz htop jwm lsblk make mlocate ncdu neofetch openssh-client-default \ p7zip ripgrep scrot setxkbmap tig udisks2 unzip vte3 xcalc xdg-utils xkill \ xmessage xrandr xrdb xwininfo xz zip updatedb # # # qemu/kvm host and virt-manager # apk add dbus font-terminus libvirt-daemon polkit qemu-img qemu-modules \ qemu-system-x86_64 virt-manager # rc-update add libvirtd modprobe tun echo "tun" >> /etc/modules-load.d/tun.conf echo tun >> /etc/modules addgroup username libvirt rc-update add libvirt-guests reboot # # # # # #