diff --git a/README.md b/README.md index 813caa6..83584f8 100644 --- a/README.md +++ b/README.md @@ -12,28 +12,34 @@ __WARNING:__ all data on the disk will be destroyed. * Click "enable rescue and power cycle", add SSH key to the rescue console, set it OS to linux64, then press mount rescue and power cycle" button. * connect via SSH to rescue console, and run the script from this repo. +Debian 10 minimal setup with SSH server + +````bash +wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-debian10-zfs-setup.sh | bash - +```` + Debian 11 minimal setup with SSH server ````bash wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-debian11-zfs-setup.sh | bash - ```` +Ubuntu 18.04 LTS minimal setup with SSH server + +````bash +wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-ubuntu18-zfs-setup.sh | bash - +```` + Ubuntu 20 LTS minimal setup with SSH server ````bash wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-ubuntu20-zfs-setup.sh | bash - ```` -Debian 10 minimal setup with SSH server +Ubuntu 22 LTS minimal setup with SSH server ````bash -wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-debian10-zfs-setup.sh | bash - -```` - -Ubuntu 18.04 LTS minimal setup with SSH server - -````bash -wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-ubuntu18-zfs-setup.sh | bash - +wget -qO- https://raw.githubusercontent.com/terem42/zfs-hetzner-vm/master/hetzner-ubuntu22-zfs-setup.sh | bash - ```` Answer script questions about desired hostname and ZFS ARC cache size. diff --git a/hetzner-debian10-zfs-setup.sh b/hetzner-debian10-zfs-setup.sh index d7e3511..448448b 100644 --- a/hetzner-debian10-zfs-setup.sh +++ b/hetzner-debian10-zfs-setup.sh @@ -697,7 +697,7 @@ chroot_execute "rm -f /etc/localtime /etc/timezone" chroot_execute "dpkg-reconfigure tzdata -f noninteractive " echo "======= installing latest kernel=============" -chroot_execute "apt install --yes -t buster-backports linux-image${v_kernel_variant}-amd64 linux-headers${v_kernel_variant}-amd64" +chroot_execute "apt install --yes -t buster-backports linux-image${v_kernel_variant} linux-headers${v_kernel_variant}" echo "======= installing aux packages ==========" chroot_execute "apt install --yes man wget curl software-properties-common nano htop gnupg"