下载脚本:
curl -fLO https://raw.githubusercontent.com/bohanyang/debi/master/debi.sh && chmod a+rx debi.sh
运行脚本:
sudo ./debi.sh --cdn --network-console --ethx --bbr --user root --password <新系统用户密码>
--bbr
开启 BBR--ethx
网卡名称使用传统形式,如eth0
而不是ens3
--cloud-kernel
安装占用空间较小的cloud
内核,但可能会导致 UEFI 启动的机器(如 Oracle、Azure 及 Hyper-V、Google Cloud 等)VNC 黑屏。BIOS 启动的普通 VPS 则没有此问题。- 默认时区为 UTC,添加
--timezone Asia/Shanghai
可使用中国时区。 - 默认使用 Debian 官方 CDN 镜像源(deb.debian.org),添加
--china
可使用阿里云镜像源。
如果没有报错可以重启:
sudo shutdown -r now
约 30 秒后可以尝试 SSH 登录
Available Options
--ip <string>
Disable the auto network config (DHCP) and configure a static IP address, e.g.10.0.0.2
,1.2.3.4/24
,2001:2345:6789:abcd::ef/48
--netmask <string>
e.g.255.255.255.0
,ffff:ffff:ffff:ffff::
--gateway <string>
e.g.10.0.0.1
,none
if no gateway--dns '8.8.8.8 8.8.4.4'
(Default IPv6 DNS:2001:4860:4860::8888 2001:4860:4860::8844
)--hostname <string>
FQDN hostname (includes the domain name), e.g.server1.example.com
--network-console
Enable the network console of the installer.ssh installer@ip
to connect--version 11
Supports:9
,10
,11
,12
--suite bullseye
For normal cases, please use--version
instead. e.g.stable
,testing
,sid
--release-d-i
d-i (Debian Installer) for the released versions: 11 (bullseye), 10 (buster) and 9 (stretch)--daily-d-i
Use latest daily build of d-i (Debian Installer) for the unreleased version: 12 (bookworm), sid (unstable)--mirror-protocol http
orhttps
orftp
--https
alias to--mirror-protocol https
--reuse-proxy
Reuse the value ofhttp(s)_proxy
environment variable as the mirror proxy--proxy, --mirror-proxy
Set an HTTP proxy for APT and downloads--mirror-host deb.debian.org
--mirror-directory /debian
--security-repository http://security.debian.org/debian-security
Magic value:'mirror' = <mirror-protocol>://<mirror-host>/<mirror-directory>/../debian-security
--no-account-setup, --no-user
(Manual installation) Proceed account setup manually in VNC or remote console.--username, --user debian
New user withsudo
privilege orroot
--password <string>
Password of the new user. You’ll be prompted if you choose to not specify it here--authorized-keys-url <string>
URL to your authorized keys for SSH authentication. e.g.https://github.com/torvalds.keys
--sudo-with-password
Require password when the user invokessudo
command--timezone UTC
e.g.Asia/Shanghai
for China (UTC+8) https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List--ntp 0.debian.pool.ntp.org
--no-disk-partitioning, --no-part
(Manual installation) Proceed disk partitioning manually in VNC or remote console--disk <string>
Manually select a disk for installation. Please remember to specify this when more than one disk is available! e.g./dev/sda
--no-force-gpt
By default, GPT rather than MBR partition table will be created. This option disables it.--bios
Don’t create EFI system partition. If GPT is being used, create a BIOS boot partition (bios_grub
partition). Default if/sys/firmware/efi
is absent. See--efi
Create an EFI system partition. Default if/sys/firmware/efi
exists--filesystem ext4
--kernel <string>
Choose an package for the kernel image--cloud-kernel
Chooselinux-image-cloud-amd64
or...arm64
as the kernel image--bpo-kernel
Choose the kernel image from Debian Backports (newer version from the next Debian release)--no-install-recommends
--install 'ca-certificates libpam-systemd'
Install additional APT packages. Space-separated and quoted.--safe-upgrade
(Default)apt upgrade --with-new-pkgs
. See--full-upgrade
apt dist-upgrade
--no-upgrade
--ethx
Disable Consistent Network Device Naming to get interface names like ethX back--bbr
Enable TCP BBR congestion control--hold
Don’t reboot or power off after installation--power-off
Power off after installation rather than reboot--architecture <string>
e.g.amd64
,i386
,arm64
,armhf
, etc.--boot-directory <string>
Automatically set to/
if there is an individual boot partition otherwise set to/boot
. You can try to treak this if needed (for example setting subvolume for btrfs)--firmware
Load additional non-free firmwares--no-force-efi-extra-removable
See--grub-timeout 5
How many seconds the GRUB menu shows before entering the installer--dry-run
Print generated preseed and GRUB entry without downloading the installer and actually saving them
Presets
--cdn
--mirror-protocol https
--mirror-host deb.debian.org
--security-repository mirror
--aws
--mirror-protocol https
--mirror-host cdn-aws.deb.debian.org
--security-repository mirror
--china
--dns '223.5.5.5 223.6.6.6'
--mirror-protocol https
--mirror-host mirrors.aliyun.com
--security-repository mirror
--ntp ntp.aliyun.com
#!/bin/sh
# shellcheck shell=dash
set -eu
err() {
printf "\nError: %s.\n" "$1" 1>&2
exit 1
}
warn() {
printf "\nWarning: %s.\nContinuing with the default...\n" "$1" 1>&2
sleep 5
}
command_exists() {
command -v "$1" > /dev/null 2>&1
}
# Sets variable:
late_command=
in_target() {
local command=
for argument in "$@"; do
command="$command $argument"
done
if [ -n "$command" ]; then
[ -z "$late_command" ] && late_command='true'
late_command="$late_command;$command"
fi
}
in_target_backup() {
in_target "if [ ! -e \"$1.backup\" ]; then cp \"$1\" \"$1.backup\"; fi"
}
configure_sshd() {
# !isset($sshd_config_backup)
[ -z "${sshd_config_backup+1s}" ] && in_target_backup /etc/ssh/sshd_config
sshd_config_backup=
in_target sed -Ei \""s/^#?$1 .+/$1 $2/"\" /etc/ssh/sshd_config
}
prompt_password() {
local prompt=
if [ $# -gt 0 ]; then
prompt=$1
elif [ "$username" = root ]; then
prompt="Choose a password for the root user: "
else
prompt="Choose a password for user $username: "
fi
stty -echo
trap 'stty echo' EXIT
while [ -z "$password" ]; do
echo -n "$prompt" > /dev/tty
read -r password < /dev/tty
echo > /dev/tty
done
stty echo
trap - EXIT
}
download() {
# Set "$http/https/ftp_proxy" with "$mirror_proxy"
# only when none of those have ever been set
[ -n "$mirror_proxy" ] &&
[ -z "${http_proxy+1s}" ] &&
[ -z "${https_proxy+1s}" ] &&
[ -z "${ftp_proxy+1s}" ] &&
export http_proxy="$mirror_proxy" &&
export https_proxy="$mirror_proxy" &&
export ftp_proxy="$mirror_proxy"
if command_exists wget; then
wget -O "$2" "$1"
elif command_exists curl; then
curl -fL "$1" -o "$2"
elif command_exists busybox && busybox wget --help > /dev/null 2>&1; then
busybox wget -O "$2" "$1"
else
err 'Cannot find "wget", "curl" or "busybox wget" to download files'
fi
}
# Set "$mirror_proxy" with "$http/https/ftp_proxy"
# only when it is empty and one of those is not empty
set_mirror_proxy() {
[ -n "$mirror_proxy" ] && return
case $mirror_protocol in
http)
if [ -n "${http_proxy+1s}" ]; then mirror_proxy="$http_proxy"; fi
;;
https)
if [ -n "${https_proxy+1s}" ]; then mirror_proxy="$https_proxy"; fi
;;
ftp)
if [ -n "${ftp_proxy+1s}" ]; then mirror_proxy="$ftp_proxy"; fi
;;
*)
err "Unsupported protocol: $mirror_protocol"
esac
}
set_security_archive() {
case $suite in
stretch|oldoldstable|buster|oldstable)
security_archive="$suite/updates"
;;
bullseye|stable|bookworm|testing)
security_archive="$suite-security"
;;
sid|unstable)
security_archive=''
;;
*)
err "Unsupported suite: $suite"
esac
}
set_daily_d_i() {
case $suite in
stretch|oldoldstable|buster|oldstable|bullseye|stable)
daily_d_i=false
;;
bookworm|testing|sid|unstable)
daily_d_i=true
;;
*)
err "Unsupported suite: $suite"
esac
}
set_suite() {
suite=$1
set_daily_d_i
set_security_archive
}
set_debian_version() {
case $1 in
9|stretch|oldoldstable)
set_suite stretch
;;
10|buster|oldstable)
set_suite buster
;;
11|bullseye|stable)
set_suite bullseye
;;
12|bookworm|testing)
set_suite bookworm
;;
sid|unstable)
set_suite sid
;;
*)
err "Unsupported version: $1"
esac
}
has_cloud_kernel() {
case $suite in
stretch|oldoldstable)
[ "$architecture" = amd64 ] && [ "$bpo_kernel" = true ] && return
;;
buster|oldstable)
[ "$architecture" = amd64 ] && return
[ "$architecture" = arm64 ] && [ "$bpo_kernel" = true ] && return
;;
bullseye|stable|bookworm|testing|sid|unstable)
[ "$architecture" = amd64 ] || [ "$architecture" = arm64 ] && return
esac
local tmp; tmp=''; [ "$bpo_kernel" = true ] && tmp='-backports'
warn "No cloud kernel is available for $architecture/$suite$tmp"
return 1
}
has_backports() {
case $suite in
stretch|oldoldstable|buster|oldstable|bullseye|stable|bookworm|testing) return
esac
warn "No backports kernel is available for $suite"
return 1
}
ip=
netmask=
gateway=
dns='8.8.8.8 8.8.4.4'
hostname=
network_console=false
set_debian_version 11
mirror_protocol=http
mirror_host=deb.debian.org
mirror_directory=/debian
mirror_proxy=
security_repository=http://security.debian.org/debian-security
account_setup=true
username=debian
password=
authorized_keys_url=
sudo_with_password=false
timezone=UTC
ntp=0.debian.pool.ntp.org
disk_partitioning=true
disk=
force_gpt=true
efi=
filesystem=ext4
kernel=
cloud_kernel=false
bpo_kernel=false
install_recommends=true
install='ca-certificates libpam-systemd'
upgrade=
kernel_params=
bbr=false
hold=false
power_off=false
architecture=
boot_directory=
firmware=false
force_efi_extra_removable=true
grub_timeout=5
dry_run=false
while [ $# -gt 0 ]; do
case $1 in
--cdn|--aws)
mirror_protocol=https
[ "$1" = '--aws' ] && mirror_host=cdn-aws.deb.debian.org
security_repository=mirror
;;
--china)
dns='223.5.5.5 223.6.6.6'
mirror_protocol=https
mirror_host=mirrors.aliyun.com
ntp=ntp.aliyun.com
security_repository=mirror
;;
--ip)
ip=$2
shift
;;
--netmask)
netmask=$2
shift
;;
--gateway)
gateway=$2
shift
;;
--dns)
dns=$2
shift
;;
--hostname)
hostname=$2
shift
;;
--network-console)
network_console=true
;;
--version)
set_debian_version "$2"
shift
;;
--suite)
set_suite "$2"
shift
;;
--release-d-i)
daily_d_i=false
;;
--daily-d-i)
daily_d_i=true
;;
--mirror-protocol)
mirror_protocol=$2
shift
;;
--https)
mirror_protocol=https
;;
--mirror-host)
mirror_host=$2
shift
;;
--mirror-directory)
mirror_directory=${2%/}
shift
;;
--mirror-proxy|--proxy)
mirror_proxy=$2
shift
;;
--reuse-proxy)
set_mirror_proxy
;;
--security-repository)
security_repository=$2
shift
;;
--no-user|--no-account-setup)
account_setup=false
;;
--user|--username)
username=$2
shift
;;
--password)
password=$2
shift
;;
--authorized-keys-url)
authorized_keys_url=$2
shift
;;
--sudo-with-password)
sudo_with_password=true
;;
--timezone)
timezone=$2
shift
;;
--ntp)
ntp=$2
shift
;;
--no-part|--no-disk-partitioning)
disk_partitioning=false
;;
--disk)
disk=$2
shift
;;
--no-force-gpt)
force_gpt=false
;;
--bios)
efi=false
;;
--efi)
efi=true
;;
--filesystem)
filesystem=$2
shift
;;
--kernel)
kernel=$2
shift
;;
--cloud-kernel)
cloud_kernel=true
;;
--bpo-kernel)
bpo_kernel=true
;;
--no-install-recommends)
install_recommends=false
;;
--install)
install=$2
shift
;;
--no-upgrade)
upgrade=none
;;
--safe-upgrade)
upgrade=safe-upgrade
;;
--full-upgrade)
upgrade=full-upgrade
;;
--ethx)
kernel_params="$kernel_params net.ifnames=0 biosdevname=0"
;;
--bbr)
bbr=true
;;
--hold)
hold=true
;;
--power-off)
power_off=true
;;
--architecture)
architecture=$2
shift
;;
--boot-directory)
boot_directory=$2
shift
;;
--firmware)
firmware=true
;;
--no-force-efi-extra-removable)
force_efi_extra_removable=false
;;
--grub-timeout)
grub_timeout=$2
shift
;;
--dry-run)
dry_run=true
;;
*)
err "Unknown option: \"$1\""
esac
shift
done
[ -z "$architecture" ] && {
architecture=$(dpkg --print-architecture 2> /dev/null) || {
case $(uname -m) in
x86_64)
architecture=amd64
;;
aarch64)
architecture=arm64
;;
i386)
architecture=i386
;;
*)
err 'No "--architecture" specified'
esac
}
}
[ -z "$kernel" ] && {
kernel="linux-image-$architecture"
[ "$cloud_kernel" = true ] && has_cloud_kernel && kernel="linux-image-cloud-$architecture"
[ "$bpo_kernel" = true ] && has_backports && install="$kernel/$suite-backports $install"
}
[ -n "$authorized_keys_url" ] && ! download "$authorized_keys_url" /dev/null &&
err "Failed to download SSH authorized public keys from \"$authorized_keys_url\""
installer="debian-$suite"
installer_directory="/boot/$installer"
save_preseed='cat'
[ "$dry_run" = false ] && {
[ "$(id -u)" -ne 0 ] && err 'root privilege is required'
rm -rf "$installer_directory"
mkdir -p "$installer_directory"
cd "$installer_directory"
save_preseed='tee -a preseed.cfg'
}
if [ "$account_setup" = true ]; then
prompt_password
elif [ "$network_console" = true ] && [ -z "$authorized_keys_url" ]; then
prompt_password "Choose a password for the installer user of the SSH network console: "
fi
$save_preseed << 'EOF'
# Localization
d-i debian-installer/language string en
d-i debian-installer/country string US
d-i debian-installer/locale string en_US.UTF-8
d-i keyboard-configuration/xkb-keymap select us
# Network configuration
d-i netcfg/choose_interface select auto
EOF
[ -n "$ip" ] && {
echo 'd-i netcfg/disable_autoconfig boolean true' | $save_preseed
echo "d-i netcfg/get_ipaddress string $ip" | $save_preseed
[ -n "$netmask" ] && echo "d-i netcfg/get_netmask string $netmask" | $save_preseed
[ -n "$gateway" ] && echo "d-i netcfg/get_gateway string $gateway" | $save_preseed
[ -z "${ip%%*:*}" ] && [ -n "${dns%%*:*}" ] && dns='2001:4860:4860::8888 2001:4860:4860::8844'
[ -n "$dns" ] && echo "d-i netcfg/get_nameservers string $dns" | $save_preseed
echo 'd-i netcfg/confirm_static boolean true' | $save_preseed
}
if [ -n "$hostname" ]; then
echo "d-i netcfg/hostname string $hostname" | $save_preseed
hostname=debian
domain=
else
hostname=$(cat /proc/sys/kernel/hostname)
domain=$(cat /proc/sys/kernel/domainname)
if [ "$domain" = '(none)' ]; then
domain=
else
domain=" $domain"
fi
fi
$save_preseed << EOF
d-i netcfg/get_hostname string $hostname
d-i netcfg/get_domain string$domain
EOF
echo 'd-i hw-detect/load_firmware boolean true' | $save_preseed
[ "$network_console" = true ] && {
$save_preseed << 'EOF'
# Network console
d-i anna/choose_modules string network-console
d-i preseed/early_command string anna-install network-console
EOF
if [ -n "$authorized_keys_url" ]; then
echo "d-i network-console/authorized_keys_url string $authorized_keys_url" | $save_preseed
else
$save_preseed << EOF
d-i network-console/password password $password
d-i network-console/password-again password $password
EOF
fi
echo 'd-i network-console/start select Continue' | $save_preseed
}
$save_preseed << EOF
# Mirror settings
d-i mirror/country string manual
d-i mirror/protocol string $mirror_protocol
d-i mirror/$mirror_protocol/hostname string $mirror_host
d-i mirror/$mirror_protocol/directory string $mirror_directory
d-i mirror/$mirror_protocol/proxy string $mirror_proxy
d-i mirror/suite string $suite
EOF
[ "$account_setup" = true ] && {
password_hash=$(mkpasswd -m sha-256 "$password" 2> /dev/null) ||
password_hash=$(openssl passwd -5 "$password" 2> /dev/null) ||
password_hash=$(busybox mkpasswd -m sha256 "$password" 2> /dev/null) || {
for python in python3 python python2; do
password_hash=$("$python" -c 'import crypt, sys; print(crypt.crypt(sys.argv[1], crypt.mksalt(crypt.METHOD_SHA256)))' "$password" 2> /dev/null) && break
done
}
$save_preseed << 'EOF'
# Account setup
EOF
[ -n "$authorized_keys_url" ] && configure_sshd PasswordAuthentication no
if [ "$username" = root ]; then
if [ -z "$authorized_keys_url" ]; then
configure_sshd PermitRootLogin yes
else
in_target "mkdir -m 0700 -p ~root/.ssh && busybox wget -O- \"$authorized_keys_url\" >> ~root/.ssh/authorized_keys"
fi
$save_preseed << 'EOF'
d-i passwd/root-login boolean true
d-i passwd/make-user boolean false
EOF
if [ -z "$password_hash" ]; then
$save_preseed << EOF
d-i passwd/root-password password $password
d-i passwd/root-password-again password $password
EOF
else
echo "d-i passwd/root-password-crypted password $password_hash" | $save_preseed
fi
else
configure_sshd PermitRootLogin no
[ -n "$authorized_keys_url" ] &&
in_target "sudo -u $username mkdir -m 0700 -p ~$username/.ssh && busybox wget -O - \"$authorized_keys_url\" | sudo -u $username tee -a ~$username/.ssh/authorized_keys"
[ "$sudo_with_password" = false ] &&
in_target "echo \"$username ALL=(ALL:ALL) NOPASSWD:ALL\" > \"/etc/sudoers.d/90-user-$username\""
$save_preseed << EOF
d-i passwd/root-login boolean false
d-i passwd/make-user boolean true
d-i passwd/user-fullname string
d-i passwd/username string $username
EOF
if [ -z "$password_hash" ]; then
$save_preseed << EOF
d-i passwd/user-password password $password
d-i passwd/user-password-again password $password
EOF
else
echo "d-i passwd/user-password-crypted password $password_hash" | $save_preseed
fi
fi
}
$save_preseed << EOF
# Clock and time zone setup
d-i time/zone string $timezone
d-i clock-setup/utc boolean true
d-i clock-setup/ntp boolean true
d-i clock-setup/ntp-server string $ntp
EOF
[ "$disk_partitioning" = true ] && {
$save_preseed << 'EOF'
# Partitioning
d-i partman-auto/method string regular
EOF
if [ -n "$disk" ]; then
echo "d-i partman-auto/disk string $disk" | $save_preseed
else
# shellcheck disable=SC2016
echo 'd-i partman/early_command string debconf-set partman-auto/disk "$(list-devices disk | head -n 1)"' | $save_preseed
fi
[ "$force_gpt" = true ] && {
$save_preseed << 'EOF'
d-i partman-partitioning/choose_label string gpt
d-i partman-partitioning/default_label string gpt
EOF
}
echo "d-i partman/default_filesystem string $filesystem" | $save_preseed
[ -z "$efi" ] && {
efi=false
[ -d /sys/firmware/efi ] && efi=true
}
$save_preseed << 'EOF'
d-i partman-auto/expert_recipe string \
naive :: \
EOF
if [ "$efi" = true ]; then
$save_preseed << 'EOF'
106 106 106 free \
$iflabel{ gpt } \
$reusemethod{ } \
method{ efi } \
format{ } \
. \
EOF
else
$save_preseed << 'EOF'
1 1 1 free \
$iflabel{ gpt } \
$reusemethod{ } \
method{ biosgrub } \
. \
EOF
fi
$save_preseed << 'EOF'
1075 1076 -1 $default_filesystem \
method{ format } \
format{ } \
use_filesystem{ } \
$default_filesystem{ } \
mountpoint{ / } \
.
EOF
if [ "$efi" = true ]; then
echo 'd-i partman-efi/non_efi_system boolean true' | $save_preseed
fi
$save_preseed << 'EOF'
d-i partman-auto/choose_recipe select naive
d-i partman-basicfilesystems/no_swap boolean false
d-i partman-partitioning/confirm_write_new_label boolean true
d-i partman/choose_partition select finish
d-i partman/confirm boolean true
d-i partman/confirm_nooverwrite boolean true
EOF
}
$save_preseed << EOF
# Base system installation
d-i base-installer/kernel/image string $kernel
EOF
[ "$install_recommends" = false ] && echo "d-i base-installer/install-recommends boolean $install_recommends" | $save_preseed
[ "$security_repository" = mirror ] && security_repository=$mirror_protocol://$mirror_host${mirror_directory%/*}/debian-security
# If not sid/unstable
[ -n "$security_archive" ] && {
$save_preseed << EOF
# Apt setup
d-i apt-setup/services-select multiselect updates, backports
d-i apt-setup/local0/repository string $security_repository $security_archive main
d-i apt-setup/local0/source boolean true
EOF
}
$save_preseed << 'EOF'
# Package selection
tasksel tasksel/first multiselect ssh-server
EOF
[ -n "$install" ] && echo "d-i pkgsel/include string $install" | $save_preseed
[ -n "$upgrade" ] && echo "d-i pkgsel/upgrade select $upgrade" | $save_preseed
$save_preseed << 'EOF'
popularity-contest popularity-contest/participate boolean false
# Boot loader installation
d-i grub-installer/bootdev string default
EOF
[ "$force_efi_extra_removable" = true ] && echo 'd-i grub-installer/force-efi-extra-removable boolean true' | $save_preseed
[ -n "$kernel_params" ] && echo "d-i debian-installer/add-kernel-opts string$kernel_params" | $save_preseed
$save_preseed << 'EOF'
# Finishing up the installation
EOF
[ "$hold" = false ] && echo 'd-i finish-install/reboot_in_progress note' | $save_preseed
[ "$bbr" = true ] && in_target '{ echo "net.core.default_qdisc=fq"; echo "net.ipv4.tcp_congestion_control=bbr"; } > /etc/sysctl.d/bbr.conf'
[ -n "$late_command" ] && echo "d-i preseed/late_command string in-target sh -c '$late_command'" | $save_preseed
[ "$power_off" = true ] && echo 'd-i debian-installer/exit/poweroff boolean true' | $save_preseed
save_grub_cfg='cat'
[ "$dry_run" = false ] && {
base_url="$mirror_protocol://$mirror_host$mirror_directory/dists/$suite/main/installer-$architecture/current/images/netboot/debian-installer/$architecture"
[ "$suite" = stretch ] && [ "$efi" = true ] && base_url="$mirror_protocol://$mirror_host$mirror_directory/dists/buster/main/installer-$architecture/current/images/netboot/debian-installer/$architecture"
[ "$daily_d_i" = true ] && base_url="https://d-i.debian.org/daily-images/$architecture/daily/netboot/debian-installer/$architecture"
firmware_url="https://cdimage.debian.org/cdimage/unofficial/non-free/firmware/$suite/current/firmware.cpio.gz"
download "$base_url/linux" linux
download "$base_url/initrd.gz" initrd.gz
[ "$firmware" = true ] && download "$firmware_url" firmware.cpio.gz
gzip -d initrd.gz
# cpio reads a list of file names from the standard input
echo preseed.cfg | cpio -o -H newc -A -F initrd
gzip -1 initrd
mkdir -p /etc/default/grub.d
tee /etc/default/grub.d/zz-debi.cfg 1>&2 << EOF
GRUB_DEFAULT=debi
GRUB_TIMEOUT=$grub_timeout
GRUB_TIMEOUT_STYLE=menu
EOF
if command_exists update-grub; then
grub_cfg=/boot/grub/grub.cfg
update-grub
elif command_exists grub2-mkconfig; then
tmp=$(mktemp)
grep -vF zz_debi /etc/default/grub > "$tmp"
cat "$tmp" > /etc/default/grub
rm "$tmp"
# shellcheck disable=SC2016
echo 'zz_debi=/etc/default/grub.d/zz-debi.cfg; if [ -f "$zz_debi" ]; then . "$zz_debi"; fi' >> /etc/default/grub
grub_cfg=/boot/grub2/grub.cfg
grub2-mkconfig -o "$grub_cfg"
else
err 'Could not find "update-grub" or "grub2-mkconfig" command'
fi
save_grub_cfg="tee -a $grub_cfg"
}
[ -z "$boot_directory" ] && {
if grep -q '\s/boot\s' /proc/mounts; then
boot_directory=/
else
boot_directory=/boot/
fi
}
installer_directory="$boot_directory$installer"
# shellcheck disable=SC2034
mem=$(grep ^MemTotal: /proc/meminfo | { read -r x y z; echo "$y"; })
[ $((mem / 1024)) -le 512 ] && kernel_params="$kernel_params lowmem/low=1"
initrd="$installer_directory/initrd.gz"
[ "$firmware" = true ] && initrd="$initrd $installer_directory/firmware.cpio.gz"
$save_grub_cfg 1>&2 << EOF
menuentry 'Debian Installer' --id debi {
insmod part_msdos
insmod part_gpt
insmod ext2
insmod xfs
linux $installer_directory/linux$kernel_params
initrd $initrd
}
EOF
转载于:https://github.com/bohanyang/debi
正文完