Home Linux Distros
Install from boot iso


echo "shortHostname" > /etc/hostname
hostname -F /etc/hostname
vi /etc/hosts
vi /etc/resolv.conf
 


vi /etc/network/interfaces

auto lo
iface lo inet loopback

auto eth0
iface eth0 inet static
  address 192.168.1.xxx
  netmask 255.255.255.0
  gateway 192.168.1.1

 

Enable networking

/etc/init.d/networking restart
rc-update add networking 
 

Set the timezone
 
setup-timezone
 

vi /etc/apk/repositories

http://nl.alpinelinux.org/alpine/v3.8/main
 

Install chrony and lvm2

apk update
apk add chrony
rc-update add chronyd
apk add lvm2
 

Install on disk with LVM
 
setup-disk -L
 

reboot

Upgrade everything

apk update
apk upgrade --available --simulate
apk upgrade --available