Created
November 29, 2019 23:26
-
-
Save Lucent/30349ab22549f7638910b9e14c91c179 to your computer and use it in GitHub Desktop.
Install Debian 8 Jessie on NVMe disk in UEFI mode
This file contains hidden or 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
# 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