This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # This script creates a Preseeded Debian buster ISO installer. | |
| # The preseeded file must have been filled beforehand. | |
| debian_iso_url="https://cdimage.debian.org/debian-cd/current/amd64/iso-cd/debian-10.4.0-amd64-netinst.iso" | |
| debian_preseed_cfg="$(dirname "$0")/debian-buster-preseed.cfg" | |
| debian_iso_file="$(basename ${debian_iso_url})" | |
| debian_iso_preseeded="preseeded-${debian_iso_file}" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| ########################################################################################################### | |
| # Bash Script of this Documentation : | |
| # https://openzfs.github.io/openzfs-docs/Getting%20Started/Debian/Debian%20Bullseye%20Root%20on%20ZFS.html#debian-bullseye-root-on-zfs | |
| # | |
| # *********** Forked this to make prenotes for expansion **************** - JDBurcham | |
| # | |
| # What I'm doing: | |
| # I really don't like using default installers or the option of preseeding. My goal is to take this script | |
| # and pack it with every possible install option, have a guided default you can press "enter" though, but |