Open ragkousism opened 6 years ago
I found the problem. On my system I am using a nvm ssd, which means that df -T /boot/efi | sed -n 2p | awk '{ print $1}'
evaluates to /dev/nvme0n1p1
. The issue is that echo "$DEVICE" | sed 's|[0-9]||g'
evaluates into /dev/nvmenp
and echo "$DEVICE" | sed 's|[^0-9]||g'
evaluates into 011
which is completely wrong. the correct values are DISK=/dev/nvme0n1 and PARTNUM=1
Hello, running
make-secure-boot-keys
as root on ubuntu 16.04 fails in the end with:The part in which it fails is:
Any ideas what could be wrong?