説明なし

Toastie 6991483b92 added chapter numbers for alternatives 11 ヶ月 前
.gitignore 1719c8edc6 initial 2 年 前
README.md 6991483b92 added chapter numbers for alternatives 11 ヶ月 前
bootstrap-bookworm.sh 14670bbec1 added comment to systemd-resolve config 1 年間 前
bootstrap-bullseye.sh dd17f4eb77 fixed journald config 1 年間 前
config-get-netconf-eth0.sh 692cefc257 fixed permisison and docu 1 年間 前
config.sh.template af47c90725 added option for extra packages 2 年 前
install_docker.sh e5340f5759 removed lsb_release 1 年間 前

README.md

bootstrap

The script in this repo bootstraps Debian bookworm from a grml live environment. Design decisions and usage instructions are outlined in the beginning of the script.

Usage

Remark: Make sure to boot grml for amd64

# boot grml
# - press e to setup network if neccessary
# - press Return to run a shell
# - Run the command Start ssh , with a capital S to start the ssh server
# - passwd to change the root password
git clone https://git.in-ulm.de/ulpeters/bootstrap.git
cd bootstrap
cp config.sh.template config.sh
# ./config-get-netconf-eth0.sh to copy running grml network config
vi config.sh
./bootstrap-bookworm.sh install
# reboot
# run as root
/installer/bootstrap-bookworm.sh postinstall

Alternatives

1. Qemu disk as installation target

img="/var/lib/libvirt/images/ts-linux-testing.qcow2"
qemu-img create -f qcow2 -o size=20G $img  # create image
qemu-nbd -c /dev/nbd0 $img  # create device from image
qemu-nbd -d /dev/nbd0       # release device

Set disk=/dev/nbd0 as installation target