Change font grub on boot

Buongiorno a tutti, ho un Dell XPS-13-9370 che al boot ha una risoluzione di 3840x2160 quindi qualsiasi azione si vorrebbe intraprendere (es. selezionare un diverso kernel) è praticamente impossibile perchè i caratteri sono così piccoli che risultano illeggibili.
Qualcuno riesce a darmi un aiuto?

Prove effettuate:

$ uname -a
Linux xps-13-9370 5.6.8-200.fc31.x86_64 #1 SMP Wed Apr 29 19:10:01 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux

Aggiunto al file /etc/default/grub

GRUB_GFXMODE=1024x768,auto
GRUB_GFXPAYLOAD=keep

ricreato grub:

$ grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg

Generating grub configuration file ...
File descriptor 21 (socket:[63624]) leaked on vgs invocation. Parent PID 51164: /usr/sbin/grub2-probe
File descriptor 36 (socket:[59301]) leaked on vgs invocation. Parent PID 51164: /usr/sbin/grub2-probe
File descriptor 21 (socket:[63624]) leaked on vgs invocation. Parent PID 51164: /usr/sbin/grub2-probe
File descriptor 36 (socket:[59301]) leaked on vgs invocation. Parent PID 51164: /usr/sbin/grub2-probe
File descriptor 21 (socket:[63624]) leaked on vgs invocation. Parent PID 51334: /usr/sbin/grub2-probe
File descriptor 36 (socket:[59301]) leaked on vgs invocation. Parent PID 51334: /usr/sbin/grub2-probe
File descriptor 21 (socket:[63624]) leaked on vgs invocation. Parent PID 51334: /usr/sbin/grub2-probe
File descriptor 36 (socket:[59301]) leaked on vgs invocation. Parent PID 51334: /usr/sbin/grub2-probe
Adding boot menu entry for EFI firmware configuration
done
$ ls -altr /boot/efi/EFI/fedora/grub*
-rwx------. 1 root root    4394 12 dic 15.27 /boot/efi/EFI/fedora/grub.cfg.rpmsave
-rwx------. 1 root root    1024  2 mar 08.24 /boot/efi/EFI/fedora/grubenvsUq3mV
-rwx------. 1 root root 2271560 16 apr 22.24 /boot/efi/EFI/fedora/grubx64.efi
-rwx------. 1 root root 1468744 16 apr 22.24 /boot/efi/EFI/fedora/grubia32.efi
-rwx------. 1 root root    1024  5 mag 12.44 /boot/efi/EFI/fedora/grubenv
-rwx------. 1 root root    5667  5 mag 12.44 /boot/efi/EFI/fedora/grub.cfg
$ grubby --info=ALL

index=0
kernel="/boot/vmlinuz-5.6.8-200.fc31.x86_64"
args="ro resume=/dev/mapper/fedora_localhost--live-swap rd.lvm.lv=fedora_localhost-live/root rd.lvm.lv=fedora_localhost-live/swap rhgb quiet"
root="/dev/mapper/fedora_localhost--live-root"
initrd="/boot/initramfs-5.6.8-200.fc31.x86_64.img"
title="Fedora (5.6.8-200.fc31.x86_64) 31 (Thirty One)"
id="ef360e474a3143b9a20cd8d3540fef1e-5.6.8-200.fc31.x86_64"
index=1
kernel="/boot/vmlinuz-5.6.7-200.fc31.x86_64"
args="ro resume=/dev/mapper/fedora_localhost--live-swap rd.lvm.lv=fedora_localhost-live/root rd.lvm.lv=fedora_localhost-live/swap rhgb quiet"
root="/dev/mapper/fedora_localhost--live-root"
initrd="/boot/initramfs-5.6.7-200.fc31.x86_64.img"
title="Fedora (5.6.7-200.fc31.x86_64) 31 (Thirty One)"
id="ef360e474a3143b9a20cd8d3540fef1e-5.6.7-200.fc31.x86_64"
index=2
kernel="/boot/vmlinuz-0-rescue-ef360e474a3143b9a20cd8d3540fef1e"
args="ro resume=/dev/mapper/fedora_localhost--live-swap rd.lvm.lv=fedora_localhost-live/root rd.lvm.lv=fedora_localhost-live/swap rhgb quiet"
root="/dev/mapper/fedora_localhost--live-root"
initrd="/boot/initramfs-0-rescue-ef360e474a3143b9a20cd8d3540fef1e.img"
title="Fedora (0-rescue-ef360e474a3143b9a20cd8d3540fef1e) 30 (Workstation Edition)"
id="ef360e474a3143b9a20cd8d3540fef1e-0-rescue"
$ xrandr --current
Screen 0: minimum 320 x 200, current 1600 x 900, maximum 16384 x 16384
eDP-1 connected primary 1600x900+0+0 (normal left inverted right x axis y axis) 294mm x 165mm
   3840x2160     60.00 +  59.98    59.97    48.00  
   3200x1800     59.96    59.94

Grazie
Cristiano

Per la community ho trovato la soluzione dopo 1 anno e mezzo visto che il primo post lo avevo aperto nel dicembre 2018 ma nessuno era riuscito a darmi la soluzione.

Modificare file /etc/default/grub:

  • commentare: GRUB_TERMINAL_OUTPUT=“console”
  • inserire:
    GRUB_TERMINAL_OUTPUT=“gfxterm”
    GRUB_GFXMODE=1024x768,auto
    GRUB_GFXPAYLOAD=keep
$ vi /etc/default/grub

GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
#GRUB_TERMINAL_OUTPUT="console"
GRUB_TERMINAL_OUTPUT="gfxterm"
GRUB_CMDLINE_LINUX="resume=/dev/mapper/fedora_localhost--live-swap rd.lvm.lv=fedora_localhost-live/root rd.lvm.lv=fedora_localhost-live/swap rhgb quiet"
GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG=true
GRUB_GFXMODE=1024x768,auto
GRUB_GFXPAYLOAD=keep

Ricreare file grub

$ grub2-mkconfig -o /boot/efi/EFI/fedora/grub.cfg

Potete chiudere il post come risolto, grazie

Buona giornata a tutti
Cristiano