testing
This commit is contained in:
parent
bda0e1c8c3
commit
c39f0201dc
208
debianzfs.sh
Normal file → Executable file
208
debianzfs.sh
Normal file → Executable file
@ -3,23 +3,152 @@
|
|||||||
# Script is based off official guide: see "Debian Bullseye Root on ZFS"
|
# Script is based off official guide: see "Debian Bullseye Root on ZFS"
|
||||||
# https://openzfs.github.io/openzfs-docs/Getting%20Started/Debian/Debian%20Bullseye%20Root%20on%20ZFS.html
|
# https://openzfs.github.io/openzfs-docs/Getting%20Started/Debian/Debian%20Bullseye%20Root%20on%20ZFS.html
|
||||||
|
|
||||||
# Settings
|
#################
|
||||||
|
### Functions ###
|
||||||
|
#################
|
||||||
|
function usage () {
|
||||||
|
echo "Usage: ./$(basename "$0") [-mpP] /dev/sdX"
|
||||||
|
}
|
||||||
|
|
||||||
|
function disk_check () {
|
||||||
|
DISK_TYPE=$(file "$1" | awk '{ print $2$3 }')
|
||||||
|
if [ "$DISK_TYPE" != "blockspecial" ]; then
|
||||||
|
echo "ERROR: Disk '$1' is not a block device"
|
||||||
|
exit 1;
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
function password_prompt () {
|
||||||
|
unset PASSWORD_PROMPT_RESULT
|
||||||
|
while true; do
|
||||||
|
read -r -s -p "${1}: " password
|
||||||
|
echo ''
|
||||||
|
read -r -s -p "${1} (confirm): " password_confirm
|
||||||
|
echo ''
|
||||||
|
if [ "$password" == "$password_confirm" ]; then
|
||||||
|
if [ -z "$password" ]; then
|
||||||
|
echo "Password can not be empty, try again."
|
||||||
|
else
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
echo "Passwords did not match, try again."
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
PASSWORD_PROMPT_RESULT="$password"
|
||||||
|
export PASSWORD_PROMPT_RESULT
|
||||||
|
}
|
||||||
|
|
||||||
|
function disk_format () {
|
||||||
|
sgdisk -n2:1M:+512M -t2:EF00 "$1"
|
||||||
|
sgdisk -n3:0:+1G -t3:BF01 "$1"
|
||||||
|
sgdisk -n4:0:0 -t4:BF00 "$1"
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_boot_pool () {
|
||||||
|
zpool create -f \
|
||||||
|
-o ashift=12 \
|
||||||
|
-o autotrim=on -d \
|
||||||
|
-o cachefile=/etc/zfs/zpool.cache \
|
||||||
|
-o feature@async_destroy=enabled \
|
||||||
|
-o feature@bookmarks=enabled \
|
||||||
|
-o feature@embedded_data=enabled \
|
||||||
|
-o feature@empty_bpobj=enabled \
|
||||||
|
-o feature@enabled_txg=enabled \
|
||||||
|
-o feature@extensible_dataset=enabled \
|
||||||
|
-o feature@filesystem_limits=enabled \
|
||||||
|
-o feature@hole_birth=enabled \
|
||||||
|
-o feature@large_blocks=enabled \
|
||||||
|
-o feature@livelist=enabled \
|
||||||
|
-o feature@lz4_compress=enabled \
|
||||||
|
-o feature@spacemap_histogram=enabled \
|
||||||
|
-o feature@zpool_checkpoint=enabled \
|
||||||
|
-O devices=off \
|
||||||
|
-O acltype=posixacl -O xattr=sa \
|
||||||
|
-O compression=lz4 \
|
||||||
|
-O normalization=formD \
|
||||||
|
-O relatime=on \
|
||||||
|
-O canmount=off -O mountpoint=/boot -R "$1" \
|
||||||
|
bpool "$2"
|
||||||
|
}
|
||||||
|
|
||||||
|
function create_root_pool () {
|
||||||
|
zpool create -f \
|
||||||
|
-o ashift=12 \
|
||||||
|
-o autotrim=on \
|
||||||
|
-O encryption=on -O keylocation=prompt -O keyformat=passphrase \
|
||||||
|
-O acltype=posixacl -O xattr=sa -O dnodesize=auto \
|
||||||
|
-O compression=lz4 \
|
||||||
|
-O normalization=formD \
|
||||||
|
-O relatime=on \
|
||||||
|
-O canmount=off -O mountpoint=/ -R "$1" \
|
||||||
|
rpool "$2"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
################
|
||||||
|
### Settings ###
|
||||||
|
################
|
||||||
|
# Static
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
DISK=$1
|
|
||||||
ZFSHOST=$2
|
|
||||||
[ -z "$ZFSHOST" ] && ZFSHOST="debianzfs"
|
|
||||||
CODENAME="bullseye"
|
CODENAME="bullseye"
|
||||||
ZFSROOT="/mnt"
|
ZFSROOT="/mnt"
|
||||||
|
|
||||||
|
# Options
|
||||||
|
while getopts ':m:p:P:d' OPTION; do
|
||||||
|
case "$OPTION" in
|
||||||
|
m) MIRROR="$OPTARG";;
|
||||||
|
p) ROOTPW="$OPTARG";;
|
||||||
|
P) RPOOLPW="$OPTARG";;
|
||||||
|
?)
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
shift "$((OPTIND -1))"
|
||||||
|
|
||||||
|
# Parameters
|
||||||
|
DISK=$1
|
||||||
|
ZFSHOST=$2
|
||||||
|
|
||||||
|
# Verify variables
|
||||||
|
[ -z "$ZFSHOST" ] && ZFSHOST="debianzfs"
|
||||||
|
|
||||||
|
if [ -z "$DISK" ]; then
|
||||||
|
echo "FATAL: DISK not set"
|
||||||
|
usage
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$ROOTPW" ]; then
|
||||||
|
password_prompt "Root Passphrase"
|
||||||
|
ROOTPW="$PASSWORD_PROMPT_RESULT"
|
||||||
|
unset PASSWORD_PROMPT_RESULT
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -z "$RPOOLPW" ]; then
|
||||||
|
password_prompt "ZFS Encryption Passphrase"
|
||||||
|
RPOOLPW="$PASSWORD_PROMPT_RESULT"
|
||||||
|
unset PASSWORD_PROMPT_RESULT
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$DEBUG" == "true" ]; then
|
||||||
|
echo "DISK=${DISK}"
|
||||||
|
echo "MIRROR=${MIRROR}"
|
||||||
|
echo "ZFSHOST=${ZFSHOST}"
|
||||||
|
echo "CODENAME=${CODENAME}"
|
||||||
|
echo "ZFSROOT=${ZFSROOT}"
|
||||||
|
echo "ROOTPW=${ROOTPW}"
|
||||||
|
echo "RPOOLPW=${RPOOLPW}"
|
||||||
|
fi
|
||||||
|
|
||||||
# Display commands
|
# Display commands
|
||||||
set -x
|
set -x
|
||||||
|
|
||||||
# Is the DISK path a block device?
|
# Are the DISK paths block devices?
|
||||||
DISK_TYPE=$(file "${DISK}" | awk '{ print $2$3 }')
|
disk_check "$DISK"
|
||||||
if [ "$DISK_TYPE" != "blockspecial" ]; then
|
[ -n "$MIRROR" ] && disk_check "$MIRROR"
|
||||||
echo "ERROR: Disk '${DISK}' is not a block device"
|
|
||||||
exit 1;
|
|
||||||
fi
|
|
||||||
|
|
||||||
###############################################
|
###############################################
|
||||||
### Step 1: Prepare The Install Environment ###
|
### Step 1: Prepare The Install Environment ###
|
||||||
@ -48,56 +177,23 @@ apt-get install -y debootstrap gdisk pwgen zfsutils-linux
|
|||||||
swapoff --all
|
swapoff --all
|
||||||
|
|
||||||
# 3. Partition your disk(s)
|
# 3. Partition your disk(s)
|
||||||
# Run this for UEFI booting (for use now or in the future)
|
# UEFI booting + boot pool + ZFS native encryption
|
||||||
sgdisk -n2:1M:+512M -t2:EF00 "$DISK"
|
disk_format "$DISK"
|
||||||
|
[ -n "$MIRROR" ] && disk_format "$MIRROR"
|
||||||
# Run this for the boot pool
|
|
||||||
sgdisk -n3:0:+1G -t3:BF01 "$DISK"
|
|
||||||
|
|
||||||
# Unencrypted or ZFS native encryption
|
|
||||||
sgdisk -n4:0:0 -t4:BF00 "$DISK"
|
|
||||||
|
|
||||||
# 4. Create the boot pool
|
# 4. Create the boot pool
|
||||||
zpool create -f \
|
if [ -z "$MIRROR" ]; then
|
||||||
-o ashift=12 \
|
create_boot_pool "$ZFSROOT" "${DISK}3 ${MIRROR}3"
|
||||||
-o autotrim=on -d \
|
else
|
||||||
-o cachefile=/etc/zfs/zpool.cache \
|
create_boot_pool "$ZFSROOT" "mirror ${DISK}3 ${MIRROR}3"
|
||||||
-o feature@async_destroy=enabled \
|
fi
|
||||||
-o feature@bookmarks=enabled \
|
|
||||||
-o feature@embedded_data=enabled \
|
|
||||||
-o feature@empty_bpobj=enabled \
|
|
||||||
-o feature@enabled_txg=enabled \
|
|
||||||
-o feature@extensible_dataset=enabled \
|
|
||||||
-o feature@filesystem_limits=enabled \
|
|
||||||
-o feature@hole_birth=enabled \
|
|
||||||
-o feature@large_blocks=enabled \
|
|
||||||
-o feature@livelist=enabled \
|
|
||||||
-o feature@lz4_compress=enabled \
|
|
||||||
-o feature@spacemap_histogram=enabled \
|
|
||||||
-o feature@zpool_checkpoint=enabled \
|
|
||||||
-O devices=off \
|
|
||||||
-O acltype=posixacl -O xattr=sa \
|
|
||||||
-O compression=lz4 \
|
|
||||||
-O normalization=formD \
|
|
||||||
-O relatime=on \
|
|
||||||
-O canmount=off -O mountpoint=/boot -R "$ZFSROOT" \
|
|
||||||
bpool "${DISK}3"
|
|
||||||
|
|
||||||
# 5. Create the root pool
|
# 5. Create the root pool
|
||||||
# ZFS native encryption (with a random password)
|
if [ -z "$MIRROR" ]; then
|
||||||
RPOOLPW="$(pwgen -s 16 1)"
|
create_root_pool "$ZFSROOT" "${DISK}4"
|
||||||
echo "$RPOOLPW" | \
|
else
|
||||||
zpool create -f \
|
create_root_pool "$ZFSROOT" "mirror ${DISK}4 ${MIRROR}4"
|
||||||
-o ashift=12 \
|
fi
|
||||||
-o autotrim=on \
|
|
||||||
-O encryption=on -O keylocation=prompt -O keyformat=passphrase \
|
|
||||||
-O acltype=posixacl -O xattr=sa -O dnodesize=auto \
|
|
||||||
-O compression=lz4 \
|
|
||||||
-O normalization=formD \
|
|
||||||
-O relatime=on \
|
|
||||||
-O canmount=off -O mountpoint=/ -R "$ZFSROOT" \
|
|
||||||
rpool "${DISK}4"
|
|
||||||
unset RPOOLPW
|
|
||||||
|
|
||||||
###################################
|
###################################
|
||||||
### Step 3: System Installation ###
|
### Step 3: System Installation ###
|
||||||
|
Loading…
x
Reference in New Issue
Block a user