#!/bin/bash -e #---------- # Interactive installation steps for Debian Bullseye from GRML using debootstrap # Design decisions # - Fokus on a simple setup, primarly for VMs # - One disk, one partion, swap-file in the same partion as safety net # - Use systemd whereever possible (network, ntp, cron, journald logging) # - Minimal number of packages & cloud kernel # - grub-pc, not efi # - random root and admin user password generation # - ssh on port 50101 limited to the admin user # Usage # Boot grml and clone repo # cp config.sh.template config.sh # copy template # vi config.sh # update installation variables # bootstrap-bullseye.sh install # start installation # !! Note down the admin passwords and reboot # sudo /installer/bootstrap-bullseye.sh postinstall # run postinstall in the new system # Variables mnt="/mnt/root" # mountpoint for the new root filesystem hostname="somehost.example.com" disk="/dev/vda" # lsblk --list disk1=$disk"1" netDev="eth0" # ip link netAddress="203.0.113.66/24" netGateway="203.0.113.1" netBroadcast="203.0.113.255" netDNS1="192.0.2.10" netDNS2="198.51.100.10" netNTP="pool.ntp.org" [ -f ./config.sh ] && source config.sh # Setup network in grml grmlnetwork(){ ip link show # list interfaces ip addr add $netAddress dev $netDev ip link set $netDev up ip route add default via $netGateway echo nameserver $netDNS1 >> /etc/resolv.conf echo nameserver $netDNS2 >> /etc/resolv.conf } install(){ #---------- # Prepare disks # Parition disks -- pkg: parted parted $disk -s \ mklabel msdos \ mkpart primary ext4 512M 100% toggle 1 boot fdisk -l $disk # Format disks -- pkg: e2fsprogs dosfstools and to file system check mkfs.ext4 $disk1 && e2fsck $disk1 # Prepare mount points and mount mkdir -p $mnt mount $disk1 $mnt # Create swapfile swapfile=$mnt/swapfile dd if=/dev/zero of=$swapfile bs=1M count=1024 status=progress # create 1GB file chmod 600 $swapfile #restric permissions mkswap $swapfile #format file #---------- # Bootstrap -- pkg: debootstrap # Remark: Debootstrap does not install recommands!! debootstrap --variant=minbase --arch=amd64 bullseye $mnt http://ftp2.de.debian.org/debian/ #---------- # Configuration # Configure disk mounts # Or get UUID from blkid... cat >$mnt/etc/fstab <$mnt/etc/apt/sources.list <> $mnt/etc/hosts echo "$hostname" > $mnt/etc/hostname #---------- # Prepare chroot mount -o bind /dev $mnt/dev mount -o bind /dev/pts $mnt/dev/pts mount -t sysfs /sys $mnt/sys mount -t proc /proc $mnt/proc cp /proc/mounts $mnt/etc/mtab cp /etc/resolv.conf $mnt/etc/resolv.conf mkdir -p $mnt/installer cp $(dirname `realpath $0`)/*.sh $mnt/installer # Run script in chroot chroot $mnt /bin/bash /installer/bootstrap-bullseye.sh install2 # Install bootloader $0 bootloader } #---------- # Function executed within chroot install2(){ source /installer/config.sh # Install basic system apt-get update apt-get install --yes \ apt-utils dialog msmtp-mta \ systemd-sysv locales tzdata haveged \ linux-image-cloud-amd64 grub-pc \ iproute2 netbase \ ssh sudo \ less vim-tiny bash-completion pwgen lsof \ dnsutils iputils-ping curl # Upgrade and clean up apt-get upgrade --yes apt-get autoremove --yes apt-get clean --yes # Setup users and passwords [ -z $pwdAdmin ] && pwdAdmin=`pwgen --capitalize --numerals --ambiguous 12 1` useradd admin --create-home --shell /bin/bash echo "admin:$pwdAdmin" | chpasswd usermod -a -G sudo admin echo -e "\e[1;33;4;44mPassword for the user admin: $pwdAdmin\e[0m" pass=`pwgen --capitalize --numerals --ambiguous 12 1` [ -z $pwdRoot ] && pwdRoot=`pwgen --capitalize --numerals --ambiguous 12 1` echo "root:$pwdRoot" | chpasswd echo -e "\e[1;33;4;44mPassword for the user root: $pwdRoot\e[0m" # Harden SSHD echo AllowUsers admin >> /etc/ssh/sshd_config sed -i -e 's/#Port 22/Port 50101/g' /etc/ssh/sshd_config sed -i -e 's/#PubkeyAuthentication yes/PubkeyAuthentication yes/g' /etc/ssh/sshd_config ## Configure network using systemd if [ -z $netAddress ] then ## Network OPTION 1 - DHCP cat >/etc/systemd/network/20-wired.network </etc/systemd/network/20-wired.network <>/etc/systemd/journald.conf </etc/update-motd.d/15-boot-errors</etc/default/keyboard <&2 ;; esac