
18 Mar
2021
18 Mar
'21
16:12
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. 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.