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
Special thanks to https://blog.hansenpartnership.com/the-meaning-of-all-the-uefi-keys/ for all the explainations | |
If you want to keep microsoft keys, you will need to backup db and dbx before entering Setup Mode (Not shown here) | |
Later add those to db.esl just how I added mok.esl and debian_uefi_ca.esl. Steps for dbx is not shown here. | |
Enter into Setup Mode from fwsetup/UEFI (GRUB 2 command/Esc) | |
downloaded debian UEFI CA ROOT certificate | |
collected mok.pub from /var/lib/dkms/ | |
/* add zswap to cmdline for systemd-boot since I have SSD */ | |
echo "zswap.enabled=1" > /usr/lib/kernel/cmdline |
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
var express = require('express'); | |
var app = express(); | |
// view engine setup | |
app.set('views', path.join(__dirname, 'views')); | |
// app.set('view engine', 'hbs'); | |
// To use a different extension (i.e. html) for your template files: | |
app.set('view engine', 'html'); |