A spin of Alpine Linux for my personal usage

Add dev distrobox

Changed files
+15
+4
install.sh
··· 75 # Git configuration 76 git config --global init.initialBranch main 77
··· 75 # Git configuration 76 git config --global init.initialBranch main 77 78 + # Create distroboxes 79 + mkdir -p ~/Boxes/ 80 + distrobox create -Y -i debian:latest -n dev -H ~/Boxes/dev -ap "git build-essential" 81 +
+11
readme
··· 13 14 Alpine: 15 16 # apk add -y git 17 # git clone https://tangled.org/emmeline.girlkisser.top/elastic 18 # cd elastic 19 # sh preinstall.sh 20 Make sure you're connected to internet again. preinstall 21 changes Alpine to use networkmanager. 22 # sh install.sh 23 # cd .. 24 # rm -rf elastic 25 # reboot 26 27 Then log in as `manager`. There shouldn't be a password. 28 29 Desktop 30 -------
··· 13 14 Alpine: 15 16 + Pre-installation: 17 + 18 # apk add -y git 19 # git clone https://tangled.org/emmeline.girlkisser.top/elastic 20 # cd elastic 21 # sh preinstall.sh 22 + 23 Make sure you're connected to internet again. preinstall 24 changes Alpine to use networkmanager. 25 + 26 + Installation: 27 + 28 # sh install.sh 29 # cd .. 30 # rm -rf elastic 31 # reboot 32 33 Then log in as `manager`. There shouldn't be a password. 34 + 35 + Post installation: 36 + 37 + Init dev box (this will install basic packages for it). 38 + $ distrobox enter dev 39 40 Desktop 41 -------