Created
May 8, 2020 16:55
-
-
Save wilrnh/ba4541ba22cc3142b508535aec7f11a0 to your computer and use it in GitHub Desktop.
Ubuntu full disk encryption script
This file contains 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 | |
# https://help.ubuntu.com/community/Full_Disk_Encryption_Howto_2019 | |
mount | grep efivars | |
sudo -i | |
lsblk | |
export DEV="/dev/nvme0n1" | |
export DM="${DEV##*/}" | |
export DM="${DM}$( if [[ "$DM" =~ "nvme" ]]; then echo "p"; fi )" | |
export ROOT=250G | |
export SWAP=4G | |
sgdisk --print $DEV | |
sgdisk --zap-all $DEV | |
sgdisk --new=1:0:+768M $DEV | |
sgdisk --new=2:0:+2M $DEV | |
sgdisk --new=3:0:+128M $DEV | |
sgdisk --new=5:0:+$ROOT $DEV | |
sgdisk --typecode=1:8301 --typecode=2:ef02 --typecode=3:ef00 --typecode=5:8301 $DEV | |
sgdisk --change-name=1:/boot --change-name=2:GRUB --change-name=3:EFI-SP --change-name=5:rootfs $DEV | |
sgdisk --hybrid 1:2:3 $DEV | |
sgdisk --print $DEV | |
cryptsetup luksFormat --type=luks1 ${DEV}p1 | |
cryptsetup luksFormat ${DEV}p5 | |
cryptsetup open ${DEV}p1 LUKS_BOOT | |
cryptsetup open ${DEV}p5 ${DM}5_crypt | |
ls /dev/mapper/ | |
mkfs.ext4 -L boot /dev/mapper/LUKS_BOOT | |
mkfs.vfat -F 16 -n EFI-SP ${DEV}p3 | |
pvcreate /dev/mapper/${DM}5_crypt | |
vgcreate ubuntu-vg /dev/mapper/${DM}5_crypt | |
lvcreate -L $SWAP -n swap_1 kubuntu-vg | |
lvcreate -l 80%FREE -n root kubuntu-vg | |
# run installer, manually configure partitions, setup user account... | |
echo "GRUB_ENABLE_CRYPTODISK=y" >> /target/etc/default/grub | |
# post installation: | |
mount /dev/mapper/kubuntu--vg-root /target | |
for n in proc sys dev etc/resolv.conf; do mount --rbind /$n /target/$n; done | |
chroot /target | |
mount -a | |
echo "KEYFILE_PATTERN=/etc/luks/*.keyfile" >> /etc/cryptsetup-initramfs/conf-hook | |
echo "UMASK=0077" >> /etc/initramfs-tools/initramfs.conf | |
mkdir /etc/luks | |
dd if=/dev/urandom of=/etc/luks/boot_os.keyfile bs=4096 count=1 | |
chmod u=rx,go-rwx /etc/luks | |
chmod u=r,go-rwx /etc/luks/boot_os.keyfile | |
cryptsetup luksAddKey ${DEV}p1 /etc/luks/boot_os.keyfile | |
cryptsetup luksAddKey ${DEV}p5 /etc/luks/boot_os.keyfile | |
echo "LUKS_BOOT UUID=$(blkid -s UUID -o value ${DEV}p1) /etc/luks/boot_os.keyfile luks,discard" >> /etc/crypttab | |
echo "${DM}5_crypt UUID=$(blkid -s UUID -o value ${DEV}p5) /etc/luks/boot_os.keyfile luks,discard" >> /etc/crypttab | |
# cat /etc/crypttab | |
update-initramfs -u -k all | |
reboot |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment