On 18/03/2021 17.12, Neil Rickert wrote:
On 3/18/21 6:23 AM, David T-G wrote:
% grep resume /etc/default/grub
OOOOOH! We have a bingo:
diskfarm:~ # grep resume /etc/default/grub GRUB_CMDLINE_LINUX_DEFAULT="splash=silent resume=/dev/disk/by-label/System Reserved mitigations=auto quiet"
This needs a bug report.
You are right, I missed that lone "Reserved".
Apparently the label for that partition is "System Reserved" which contains a space. So quoting is needed. It should have used
GRUB_CMDLINE_LINUX_DEFAULT="splash=silent resume=/dev/disk/by-label/System\ Reserved mitigations=auto quiet"
or
GRUB_CMDLINE_LINUX_DEFAULT="splash=silent resume=/dev/disk/by-label/'System Reserved' mitigations=auto quiet"
or something similar. Or it should ignore your settings and use UUID for that particular partition.
I understood that spaces were prohibited in partition labels. I don't know how to find this out for sure, but I see the labels I use, and I see I used "_" instead of spaces. -- Cheers / Saludos, Carlos E. R. (from 15.2 x86_64 at Telcontar)