Skip to content

Instantly share code, notes, and snippets.

@Lucent
Created November 29, 2019 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save Lucent/30349ab22549f7638910b9e14c91c179 to your computer and use it in GitHub Desktop.
Save Lucent/30349ab22549f7638910b9e14c91c179 to your computer and use it in GitHub Desktop.
Install Debian 8 Jessie on NVMe disk in UEFI mode
# Must use DVD or netinst images. CD image does not boot into UEFI mode.
# Disable CSM in BIOS.
# Clear secure boot keys.
# Expert install
# Alt+F2 to open shell
cd /target
mount --rbind /proc proc/
mount --rbind /sys sys/
mount --rbind /dev dev/
mount --rbind /run run/
chroot . /bin/bash
nano etc/apt/sources.list
# Add following line:
deb [check-valid-until=no] http://archive.debian.org/debian jessie-backports main
# Save
apt-get -o Acquire::Check-Valid-Until=false update
apt-get install linux-image-4.9-amd64
apt-get -t jessie-backports install grub-efi
update-grub
grub-install
# Continue installation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment