You are not logged in.
Installed via pacman:
sudo pacman -S linux-lts linux-lts-headers
my menu shows linux linux
It doesn't show linux-lts
But when I select the linux linux it boots to the lts kernel
I have 4 OS's on this system.
Arch linux - controls the GRUB
Arcolinux
Windows 11
Manjaro
Here are some info I hope helps.
Let me know if you need more info.
[demo@archlinux ~]$ pacman -Q | grep -E "\blinux*"
[sudo] password for demo:
linux 6.6.6.arch1-1
linux-api-headers 6.4-1
linux-firmware 20231211.f2e52a1c-1
linux-firmware-bnx2x 20231211.f2e52a1c-1
linux-firmware-liquidio 20231211.f2e52a1c-1
linux-firmware-mellanox 20231211.f2e52a1c-1
linux-firmware-nfp 20231211.f2e52a1c-1
linux-firmware-qlogic 20231211.f2e52a1c-1
linux-firmware-whence 20231211.f2e52a1c-1
linux-headers 6.6.6.arch1-1
linux-lts 6.1.67-1
linux-lts-headers 6.1.67-1
util-linux 2.39.3-1
util-linux-libs 2.39.3-1
[demo@archlinux ~]$ find /boot/vmli*
/boot/vmlinuz-linux[demo@archlinux ~]$ df -h
Filesystem Size Used Avail Use% Mounted on
dev 7.6G 0 7.6G 0% /dev
run 7.7G 1.6M 7.7G 1% /run
/dev/nvme0n1p9 36G 27G 6.6G 81% /
tmpfs 7.7G 0 7.7G 0% /dev/shm
tmpfs 7.7G 4.0K 7.7G 1% /tmp
/dev/nvme0n1p2 499M 416M 83M 84% /boot/efi
tmpfs 1.6G 72K 1.6G 1% /run/user/1000I noticed that the /boot/efi only has 83M free.
I wonder if this is going to be an issue?
I would like to use this system to do some different kernel testing with.
So I eventually want to install other kernels as well.
I probably need to make the /boot/efi partition larger.
Is there some instructions on how to do it successfully?
Thanks
Dan
Last edited by MAYBL8 (2023-12-12 22:17:19)
Offline
Please post
cat /boot/grub/grub.cfg
find /boot/efi/boot/efi/ should only have a few mebibytes of GRUB-related files but I suspect you have some kernel images in there as well.
Jin, Jîyan, Azadî
Offline
[demo@archlinux ~]$ sudo cat /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#
### BEGIN /etc/grub.d/00_header ###
insmod part_gpt
insmod part_msdos
if [ -s $prefix/grubenv ]; then
load_env
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
save_env next_entry
set boot_once=true
else
set default="${saved_entry}"
fi
if [ x"${feature_menuentry_id}" = xy ]; then
menuentry_id_option="--id"
else
menuentry_id_option=""
fi
export menuentry_id_option
if [ "${prev_saved_entry}" ]; then
set saved_entry="${prev_saved_entry}"
save_env saved_entry
set prev_saved_entry=
save_env prev_saved_entry
set boot_once=true
fi
function savedefault {
if [ -z "${boot_once}" ]; then
saved_entry="${chosen}"
save_env saved_entry
fi
}
function load_video {
if [ x$feature_all_video_module = xy ]; then
insmod all_video
else
insmod efi_gop
insmod efi_uga
insmod ieee1275_fb
insmod vbe
insmod vga
insmod video_bochs
insmod video_cirrus
fi
}
if [ x$feature_default_font_path = xy ] ; then
font=unicode
else
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 91f4ccdf-2376-48ab-a390-91ea0bc4b02a
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=1024x768
load_video
insmod gfxterm
set locale_dir=$prefix/locale
set lang=en_US
insmod gettext
fi
terminal_input console
terminal_output gfxterm
if [ x$feature_timeout_style = xy ] ; then
set timeout_style=menu
set timeout=10
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
set timeout=10
fi
### END /etc/grub.d/00_header ###
### BEGIN /etc/grub.d/06_grub-customizer_menu_color_helper ###
### END /etc/grub.d/06_grub-customizer_menu_color_helper ###
### BEGIN /etc/grub.d/10_linux ###
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-91f4ccdf-2376-48ab-a390-91ea0bc4b02a' {
savedefault
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 91f4ccdf-2376-48ab-a390-91ea0bc4b02a
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=91f4ccdf-2376-48ab-a390-91ea0bc4b02a rw loglevel=3 nvidia_drm.modeset=1 fbcon=font:TER16x32
echo 'Loading initial ramdisk ...'
initrd /boot/intel-ucode.img /boot/initramfs-linux.img
}
menuentry 'Arch Linux, with Linux linux (fallback initramfs)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-fallback-91f4ccdf-2376-48ab-a390-91ea0bc4b02a' {
savedefault
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 91f4ccdf-2376-48ab-a390-91ea0bc4b02a
echo 'Loading Linux linux ...'
linux /boot/vmlinuz-linux root=UUID=91f4ccdf-2376-48ab-a390-91ea0bc4b02a rw loglevel=3 nvidia_drm.modeset=1 fbcon=font:TER16x32
echo 'Loading initial ramdisk ...'
initrd /boot/intel-ucode.img /boot/initramfs-linux-fallback.img
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/15_ostree ###
### END /etc/grub.d/15_ostree ###
### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###
### BEGIN /etc/grub.d/25_bli ###
if [ "$grub_platform" = "efi" ]; then
insmod bli
fi
### END /etc/grub.d/25_bli ###
### BEGIN /etc/grub.d/30_os-prober_proxy ###
menuentry "ArcoLinux Linux, with Linux linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (fallback initramfs) (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux-fallback.img
}
menuentry "ArcoLinux Linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (fallback initramfs) (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux-fallback.img
}
menuentry "ArcoLinux Linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux.img
}
menuentry "ArcoLinux Linux, with Linux linux (fallback initramfs) (on /dev/nvme0n1p6)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-linux--d702f568-b918-4354-874a-f1d82eaf1f37' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root d702f568-b918-4354-874a-f1d82eaf1f37
linux /boot/vmlinuz-linux root=UUID=d702f568-b918-4354-874a-f1d82eaf1f37 rw quiet loglevel=3 audit=0 nvme_load=yes nvidia-drm.modeset=1
initrd /boot/initramfs-linux-fallback.img
}
menuentry "Windows Boot Manager (on /dev/nvme0n1p2)" --class windows --class os $menuentry_id_option 'osprober-efi-562D-988E' {
savedefault
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 562D-988E
chainloader /EFI/Microsoft/Boot/bootmgfw.efi
}
menuentry "Manjaro Linux (Kernel 6.6.6-2-MANJARO x64) (on /dev/nvme0n1p8)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.6-x86_64--45ca132d-4a37-4dc3-afa0-be2e80d6a4a2' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 45ca132d-4a37-4dc3-afa0-be2e80d6a4a2
linux /boot/vmlinuz-6.6-x86_64 root=UUID=45ca132d-4a37-4dc3-afa0-be2e80d6a4a2 rw quiet udev.log_priority=3
initrd /boot/intel-ucode.img /boot/initramfs-6.6-x86_64.img
}
menuentry "Manjaro Linux (Kernel 6.6.6-2-MANJARO x64 - fallback initramfs) (on /dev/nvme0n1p8)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.6-x86_64--45ca132d-4a37-4dc3-afa0-be2e80d6a4a2' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 45ca132d-4a37-4dc3-afa0-be2e80d6a4a2
linux /boot/vmlinuz-6.6-x86_64 root=UUID=45ca132d-4a37-4dc3-afa0-be2e80d6a4a2 rw quiet udev.log_priority=3
initrd /boot/initramfs-6.6-x86_64-fallback.img
}
menuentry "Manjaro Linux (Kernel 6.5.13-4-MANJARO x64) (on /dev/nvme0n1p8)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.5-x86_64--45ca132d-4a37-4dc3-afa0-be2e80d6a4a2' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 45ca132d-4a37-4dc3-afa0-be2e80d6a4a2
linux /boot/vmlinuz-6.5-x86_64 root=UUID=45ca132d-4a37-4dc3-afa0-be2e80d6a4a2 rw quiet udev.log_priority=3
initrd /boot/intel-ucode.img /boot/initramfs-6.5-x86_64.img
}
menuentry "Manjaro Linux (Kernel 6.5.13-4-MANJARO x64 - fallback initramfs) (on /dev/nvme0n1p8)" --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/boot/vmlinuz-6.5-x86_64--45ca132d-4a37-4dc3-afa0-be2e80d6a4a2' {
savedefault
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root 45ca132d-4a37-4dc3-afa0-be2e80d6a4a2
linux /boot/vmlinuz-6.5-x86_64 root=UUID=45ca132d-4a37-4dc3-afa0-be2e80d6a4a2 rw quiet udev.log_priority=3
initrd /boot/initramfs-6.5-x86_64-fallback.img
}
### END /etc/grub.d/30_os-prober_proxy ###
### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
fwsetup --is-supported
if [ "$?" = 0 ]; then
menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
fwsetup
}
fi
fi
### END /etc/grub.d/30_uefi-firmware ###
### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries. Simply type the
# menu entries you want to add after this comment. Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg
fi
### END /etc/grub.d/41_custom ###[demo@archlinux ~]$ find /boot/efi
/boot/efi
/boot/efi/intel-ucode.img
/boot/efi/vmlinuz-linux-lts
/boot/efi/initramfs-linux-lts.img
/boot/efi/grub
/boot/efi/grub/grubenv
/boot/efi/grub/grub.cfg
/boot/efi/EFI
/boot/efi/EFI/grub
/boot/efi/EFI/grub/grubx64.efi
/boot/efi/EFI/Microsoft
/boot/efi/EFI/Microsoft/Boot
/boot/efi/EFI/Microsoft/Boot/bg-BG
/boot/efi/EFI/Microsoft/Boot/bg-BG/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/bg-BG/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/memtest.efi
/boot/efi/EFI/Microsoft/Boot/boot.stl
/boot/efi/EFI/Microsoft/Boot/bootmgfw.efi
/boot/efi/EFI/Microsoft/Boot/CIPolicies
/boot/efi/EFI/Microsoft/Boot/CIPolicies/Active
/boot/efi/EFI/Microsoft/Boot/CIPolicies/Active/{5DAC656C-21AD-4A02-AB49-649917162E70}.cip
/boot/efi/EFI/Microsoft/Boot/CIPolicies/Active/{82443e1e-8a39-4b4a-96a8-f40ddc00b9f3}.cip
/boot/efi/EFI/Microsoft/Boot/CIPolicies/Active/{CDD5CB55-DB68-4D71-AA38-3DF2B6473A52}.cip
/boot/efi/EFI/Microsoft/Boot/cs-CZ
/boot/efi/EFI/Microsoft/Boot/cs-CZ/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/cs-CZ/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/cs-CZ/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/da-DK
/boot/efi/EFI/Microsoft/Boot/da-DK/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/da-DK/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/da-DK/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/de-DE
/boot/efi/EFI/Microsoft/Boot/de-DE/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/de-DE/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/de-DE/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/el-GR
/boot/efi/EFI/Microsoft/Boot/el-GR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/el-GR/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/el-GR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/en-GB
/boot/efi/EFI/Microsoft/Boot/en-GB/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/en-GB/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/en-US
/boot/efi/EFI/Microsoft/Boot/en-US/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/en-US/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/en-US/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/es-ES
/boot/efi/EFI/Microsoft/Boot/es-ES/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/es-ES/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/es-ES/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/es-MX
/boot/efi/EFI/Microsoft/Boot/es-MX/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/es-MX/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/et-EE
/boot/efi/EFI/Microsoft/Boot/et-EE/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/et-EE/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/fi-FI
/boot/efi/EFI/Microsoft/Boot/fi-FI/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/fi-FI/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/fi-FI/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/fr-CA
/boot/efi/EFI/Microsoft/Boot/fr-CA/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/fr-CA/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/fr-FR
/boot/efi/EFI/Microsoft/Boot/fr-FR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/fr-FR/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/fr-FR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/hr-HR
/boot/efi/EFI/Microsoft/Boot/hr-HR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/hr-HR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/hu-HU
/boot/efi/EFI/Microsoft/Boot/hu-HU/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/hu-HU/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/hu-HU/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/it-IT
/boot/efi/EFI/Microsoft/Boot/it-IT/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/it-IT/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/it-IT/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/ja-JP
/boot/efi/EFI/Microsoft/Boot/ja-JP/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/ja-JP/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/ja-JP/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/winsipolicy.p7b
/boot/efi/EFI/Microsoft/Boot/bootmgr.efi
/boot/efi/EFI/Microsoft/Boot/kdnet_uart16550.dll
/boot/efi/EFI/Microsoft/Boot/kdstub.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_10df.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_10ec.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_1137.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_14e4.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_15b3.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_1969.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_19a2.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_1af4.dll
/boot/efi/EFI/Microsoft/Boot/kd_02_8086.dll
/boot/efi/EFI/Microsoft/Boot/ko-KR
/boot/efi/EFI/Microsoft/Boot/ko-KR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/ko-KR/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/ko-KR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/lt-LT
/boot/efi/EFI/Microsoft/Boot/lt-LT/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/lt-LT/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/lv-LV
/boot/efi/EFI/Microsoft/Boot/lv-LV/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/lv-LV/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/nb-NO
/boot/efi/EFI/Microsoft/Boot/nb-NO/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/nb-NO/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/nb-NO/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/nl-NL
/boot/efi/EFI/Microsoft/Boot/nl-NL/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/nl-NL/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/nl-NL/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/pl-PL
/boot/efi/EFI/Microsoft/Boot/pl-PL/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/pl-PL/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/pl-PL/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-BR
/boot/efi/EFI/Microsoft/Boot/pt-BR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-BR/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-BR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-PT
/boot/efi/EFI/Microsoft/Boot/pt-PT/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-PT/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/pt-PT/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/qps-ploc
/boot/efi/EFI/Microsoft/Boot/qps-ploc/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/ro-RO
/boot/efi/EFI/Microsoft/Boot/ro-RO/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/ro-RO/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/ru-RU
/boot/efi/EFI/Microsoft/Boot/ru-RU/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/ru-RU/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/ru-RU/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/sk-SK
/boot/efi/EFI/Microsoft/Boot/sk-SK/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/sk-SK/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/sl-SI
/boot/efi/EFI/Microsoft/Boot/sl-SI/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/sl-SI/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/sr-Latn-RS
/boot/efi/EFI/Microsoft/Boot/sr-Latn-RS/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/sr-Latn-RS/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/sv-SE
/boot/efi/EFI/Microsoft/Boot/sv-SE/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/sv-SE/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/sv-SE/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/tr-TR
/boot/efi/EFI/Microsoft/Boot/tr-TR/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/tr-TR/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/tr-TR/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/uk-UA
/boot/efi/EFI/Microsoft/Boot/uk-UA/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/uk-UA/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/kd_07_1415.dll
/boot/efi/EFI/Microsoft/Boot/zh-CN
/boot/efi/EFI/Microsoft/Boot/zh-CN/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/zh-CN/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/zh-CN/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/zh-TW
/boot/efi/EFI/Microsoft/Boot/zh-TW/bootmgr.efi.mui
/boot/efi/EFI/Microsoft/Boot/zh-TW/memtest.efi.mui
/boot/efi/EFI/Microsoft/Boot/zh-TW/bootmgfw.efi.mui
/boot/efi/EFI/Microsoft/Boot/BOOTSTAT.DAT
/boot/efi/EFI/Microsoft/Boot/Fonts
/boot/efi/EFI/Microsoft/Boot/Fonts/chs_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/cht_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/jpn_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/kor_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/malgunn_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/malgun_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/meiryon_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/meiryo_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/msjhn_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/msjh_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/msyhn_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/msyh_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/segmono_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/segoen_slboot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/segoe_slboot.ttf
/boot/efi/EFI/Microsoft/Boot/Fonts/wgl4_boot.ttf
/boot/efi/EFI/Microsoft/Boot/Resources
/boot/efi/EFI/Microsoft/Boot/Resources/bootres.dll
/boot/efi/EFI/Microsoft/Boot/Resources/en-US
/boot/efi/EFI/Microsoft/Boot/Resources/en-US/bootres.dll.mui
/boot/efi/EFI/Microsoft/Boot/BCD
/boot/efi/EFI/Microsoft/Boot/BCD.LOG
/boot/efi/EFI/Microsoft/Boot/BCD.LOG1
/boot/efi/EFI/Microsoft/Boot/BCD.LOG2
/boot/efi/EFI/Microsoft/Boot/kd_0C_8086.dll
/boot/efi/EFI/Microsoft/Recovery
/boot/efi/EFI/Microsoft/Recovery/BCD
/boot/efi/EFI/Microsoft/Recovery/BCD.LOG
/boot/efi/EFI/Microsoft/Recovery/BCD.LOG1
/boot/efi/EFI/Microsoft/Recovery/BCD.LOG2
/boot/efi/EFI/Boot
/boot/efi/EFI/Boot/bootx64.efi
/boot/efi/EFI/manjaro
/boot/efi/EFI/manjaro/grubx64.efi
/boot/efi/EFI/arcolinux
/boot/efi/EFI/arcolinux/grubx64.efi
/boot/efi/EFI/arch
/boot/efi/EFI/arch/grubx64.efi
/boot/efi/EFI/HP
/boot/efi/EFI/HP/BIOS
/boot/efi/EFI/HP/BIOS/Current
/boot/efi/EFI/HP/BIOS/Current/0863F.bin
/boot/efi/EFI/HP/BIOS/Current/0863F.sig
/boot/efi/EFI/HP/BIOS/Previous
/boot/efi/EFI/HP/BIOS/New
/boot/efi/EFI/HP/BIOSUpdate
/boot/efi/EFI/HP/BIOSUpdate/CryptRSA.efi
/boot/efi/EFI/HP/BIOSUpdate/CryptRSA32.efi
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate.efi
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate.s09
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate.s12
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate.sig
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate32.efi
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate32.s09
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate32.s12
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate32.sig
/boot/efi/EFI/HP/BIOSUpdate/HpBiosMgmt.efi
/boot/efi/EFI/HP/BIOSUpdate/HpBiosMgmt.s09
/boot/efi/EFI/HP/BIOSUpdate/HpBiosMgmt.s12
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt.efi
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt.s09
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt.s12
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt.s14
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt32.efi
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt32.s09
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt32.s12
/boot/efi/EFI/HP/BIOSUpdate/BiosMgmt32.s14
/boot/efi/EFI/HP/BIOSUpdate/HpBiosUpdate.log
/boot/efi/linux61-x86_64.kver
/boot/efi/vmlinuz-6.1-x86_64
/boot/efi/initramfs-6.1-x86_64.img
/boot/efi/initramfs-6.1-x86_64-fallback.img
/boot/efi/System Volume Information
/boot/efi/burg
/boot/efi/burg/i386-pc
/boot/efi/burg/locale
/boot/efi/burg/themes
/boot/efi/burg/themes/starfield
/boot/efi/burg/themes/starfield/boot_menu_sw.png
/boot/efi/burg/themes/starfield/dejavu_12.pf2
/boot/efi/burg/themes/starfield/starfield.png
/boot/efi/burg/themes/starfield/boot_menu_ne.png
/boot/efi/burg/themes/starfield/terminal_box_c.png
/boot/efi/burg/themes/starfield/boot_menu_n.png
/boot/efi/burg/themes/starfield/terminal_box_nw.png
/boot/efi/burg/themes/starfield/terminal_box_sw.png
/boot/efi/burg/themes/starfield/dejavu_10.pf2
/boot/efi/burg/themes/starfield/terminal_box_s.png
/boot/efi/burg/themes/starfield/slider_c.png
/boot/efi/burg/themes/starfield/terminal_box_n.png
/boot/efi/burg/themes/starfield/terminal_box_e.png
/boot/efi/burg/themes/starfield/boot_menu_s.png
/boot/efi/burg/themes/starfield/theme.txt
/boot/efi/burg/themes/starfield/boot_menu_c.png
/boot/efi/burg/themes/starfield/COPYING.CC-BY-SA-3.0
/boot/efi/burg/themes/starfield/terminal_box_se.png
/boot/efi/burg/themes/starfield/terminal_box_w.png
/boot/efi/burg/themes/starfield/slider_s.png
/boot/efi/burg/themes/starfield/terminal_box_ne.png
/boot/efi/burg/themes/starfield/boot_menu_nw.png
/boot/efi/burg/themes/starfield/boot_menu_e.png
/boot/efi/burg/themes/starfield/boot_menu_w.png
/boot/efi/burg/themes/starfield/dejavu_bold_14.pf2
/boot/efi/burg/themes/starfield/dejavu_14.pf2
/boot/efi/burg/themes/starfield/boot_menu_se.png
/boot/efi/burg/themes/starfield/blob_w.png
/boot/efi/burg/themes/starfield/slider_n.png
/boot/efi/burg/themes/starfield/dejavu_16.pf2
/boot/efi/burg/themes/starfield/README
/boot/efi/burg/fonts
/boot/efi/burg/fonts/unicode.pf2
/boot/efi/burg/grubenv
/boot/efi/burg/grub.cfg
/boot/efi/initramfs-linux-fallback.img
/boot/efi/initramfs-linux-lts-fallback.img
/boot/efi/vmlinuz-linux
/boot/efi/initramfs-linux.img
/boot/efi/boot_rm
/boot/efi/boot_rm/EFI
/boot/efi/boot_rm/EFI/BOOT
/boot/efi/boot_rm/EFI/BOOT/BOOTX64.EFI
/boot/efi/boot_rm/EFI/EFI
/boot/efi/boot_rm/EFI/EFI/manjaro
/boot/efi/boot_rm/EFI/EFI/manjaro/grubx64.efi
/boot/efi/boot_rm/grub
/boot/efi/boot_rm/grub/grub.cfg
/boot/efi/boot_rm/grub/i386-pc
/boot/efi/boot_rm/grub/i386-pc/linux16.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_idea.mod
/boot/efi/boot_rm/grub/i386-pc/crypto.mod
/boot/efi/boot_rm/grub/i386-pc/hello.mod
/boot/efi/boot_rm/grub/i386-pc/gptsync.mod
/boot/efi/boot_rm/grub/i386-pc/spkmodem.mod
/boot/efi/boot_rm/grub/i386-pc/romfs.mod
/boot/efi/boot_rm/grub/i386-pc/squash4.mod
/boot/efi/boot_rm/grub/i386-pc/help.mod
/boot/efi/boot_rm/grub/i386-pc/syslinuxcfg.mod
/boot/efi/boot_rm/grub/i386-pc/vbe.mod
/boot/efi/boot_rm/grub/i386-pc/procfs.mod
/boot/efi/boot_rm/grub/i386-pc/minix2.mod
/boot/efi/boot_rm/grub/i386-pc/biosdisk.mod
/boot/efi/boot_rm/grub/i386-pc/part_bsd.mod
/boot/efi/boot_rm/grub/i386-pc/bfs.mod
/boot/efi/boot_rm/grub/i386-pc/keystatus.mod
/boot/efi/boot_rm/grub/i386-pc/sfs.mod
/boot/efi/boot_rm/grub/i386-pc/cmp_test.mod
/boot/efi/boot_rm/grub/i386-pc/usbserial_ftdi.mod
/boot/efi/boot_rm/grub/i386-pc/password_pbkdf2.mod
/boot/efi/boot_rm/grub/i386-pc/udf.mod
/boot/efi/boot_rm/grub/i386-pc/trig.mod
/boot/efi/boot_rm/grub/i386-pc/tr.mod
/boot/efi/boot_rm/grub/i386-pc/serial.mod
/boot/efi/boot_rm/grub/i386-pc/part_acorn.mod
/boot/efi/boot_rm/grub/i386-pc/mda_text.mod
/boot/efi/boot_rm/grub/i386-pc/diskfilter.mod
/boot/efi/boot_rm/grub/i386-pc/iorw.mod
/boot/efi/boot_rm/grub/i386-pc/zfsinfo.mod
/boot/efi/boot_rm/grub/i386-pc/rdmsr.mod
/boot/efi/boot_rm/grub/i386-pc/fat.mod
/boot/efi/boot_rm/grub/i386-pc/lsacpi.mod
/boot/efi/boot_rm/grub/i386-pc/datehook.mod
/boot/efi/boot_rm/grub/i386-pc/minix2_be.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_seed.mod
/boot/efi/boot_rm/grub/i386-pc/pgp.mod
/boot/efi/boot_rm/grub/i386-pc/backtrace.mod
/boot/efi/boot_rm/grub/i386-pc/part_plan.mod
/boot/efi/boot_rm/grub/i386-pc/mmap.mod
/boot/efi/boot_rm/grub/i386-pc/disk.mod
/boot/efi/boot_rm/grub/i386-pc/hdparm.mod
/boot/efi/boot_rm/grub/i386-pc/cmostest.mod
/boot/efi/boot_rm/grub/i386-pc/usb.mod
/boot/efi/boot_rm/grub/i386-pc/net.mod
/boot/efi/boot_rm/grub/i386-pc/gdb.mod
/boot/efi/boot_rm/grub/i386-pc/xzio.mod
/boot/efi/boot_rm/grub/i386-pc/video.mod
/boot/efi/boot_rm/grub/i386-pc/wrmsr.mod
/boot/efi/boot_rm/grub/i386-pc/usbserial_usbdebug.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_sha512.mod
/boot/efi/boot_rm/grub/i386-pc/relocator.mod
/boot/efi/boot_rm/grub/i386-pc/exfat.mod
/boot/efi/boot_rm/grub/i386-pc/ehci.mod
/boot/efi/boot_rm/grub/i386-pc/signature_test.mod
/boot/efi/boot_rm/grub/i386-pc/search_fs_uuid.mod
/boot/efi/boot_rm/grub/i386-pc/mpi.mod
/boot/efi/boot_rm/grub/i386-pc/setpci.mod
/boot/efi/boot_rm/grub/i386-pc/part_apple.mod
/boot/efi/boot_rm/grub/i386-pc/iso9660.mod
/boot/efi/boot_rm/grub/i386-pc/progress.mod
/boot/efi/boot_rm/grub/i386-pc/date.mod
/boot/efi/boot_rm/grub/i386-pc/sleep_test.mod
/boot/efi/boot_rm/grub/i386-pc/pci.mod
/boot/efi/boot_rm/grub/i386-pc/memdisk.mod
/boot/efi/boot_rm/grub/i386-pc/halt.mod
/boot/efi/boot_rm/grub/i386-pc/video_fb.mod
/boot/efi/boot_rm/grub/i386-pc/font.mod
/boot/efi/boot_rm/grub/i386-pc/vga.mod
/boot/efi/boot_rm/grub/i386-pc/smbios.mod
/boot/efi/boot_rm/grub/i386-pc/minix3.mod
/boot/efi/boot_rm/grub/i386-pc/read.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_rijndael.mod
/boot/efi/boot_rm/grub/i386-pc/part_gpt.mod
/boot/efi/boot_rm/grub/i386-pc/minicmd.mod
/boot/efi/boot_rm/grub/i386-pc/cmdline_cat_test.mod
/boot/efi/boot_rm/grub/i386-pc/pata.mod
/boot/efi/boot_rm/grub/i386-pc/usb_keyboard.mod
/boot/efi/boot_rm/grub/i386-pc/gfxterm_background.mod
/boot/efi/boot_rm/grub/i386-pc/boottime.mod
/boot/efi/boot_rm/grub/i386-pc/setjmp.mod
/boot/efi/boot_rm/grub/i386-pc/xnu_uuid_test.mod
/boot/efi/boot_rm/grub/i386-pc/ata.mod
/boot/efi/boot_rm/grub/i386-pc/tga.mod
/boot/efi/boot_rm/grub/i386-pc/bitmap.mod
/boot/efi/boot_rm/grub/i386-pc/cryptodisk.mod
/boot/efi/boot_rm/grub/i386-pc/zfscrypt.mod
/boot/efi/boot_rm/grub/i386-pc/multiboot.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_sha1.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_whirlpool.mod
/boot/efi/boot_rm/grub/i386-pc/terminal.mod
/boot/efi/boot_rm/grub/i386-pc/minix_be.mod
/boot/efi/boot_rm/grub/i386-pc/linux.mod
/boot/efi/boot_rm/grub/i386-pc/time.mod
/boot/efi/boot_rm/grub/i386-pc/vga_text.mod
/boot/efi/boot_rm/grub/i386-pc/jpeg.mod
/boot/efi/boot_rm/grub/i386-pc/bsd.mod
/boot/efi/boot_rm/grub/i386-pc/newc.mod
/boot/efi/boot_rm/grub/i386-pc/ntfscomp.mod
/boot/efi/boot_rm/grub/i386-pc/div.mod
/boot/efi/boot_rm/grub/i386-pc/testspeed.mod
/boot/efi/boot_rm/grub/i386-pc/loopback.mod
/boot/efi/boot_rm/grub/i386-pc/part_msdos.mod
/boot/efi/boot_rm/grub/i386-pc/cbmemc.mod
/boot/efi/boot_rm/grub/i386-pc/msdospart.mod
/boot/efi/boot_rm/grub/i386-pc/video_cirrus.mod
/boot/efi/boot_rm/grub/i386-pc/raid5rec.mod
/boot/efi/boot_rm/grub/i386-pc/bitmap_scale.mod
/boot/efi/boot_rm/grub/i386-pc/part_dfly.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_rsa.mod
/boot/efi/boot_rm/grub/i386-pc/echo.mod
/boot/efi/boot_rm/grub/i386-pc/cpio_be.mod
/boot/efi/boot_rm/grub/i386-pc/bufio.mod
/boot/efi/boot_rm/grub/i386-pc/password.mod
/boot/efi/boot_rm/grub/i386-pc/geli.mod
/boot/efi/boot_rm/grub/i386-pc/eval.mod
/boot/efi/boot_rm/grub/i386-pc/ldm.mod
/boot/efi/boot_rm/grub/i386-pc/ohci.mod
/boot/efi/boot_rm/grub/i386-pc/strtoull_test.mod
/boot/efi/boot_rm/grub/i386-pc/afsplitter.mod
/boot/efi/boot_rm/grub/i386-pc/file.mod
/boot/efi/boot_rm/grub/i386-pc/freedos.mod
/boot/efi/boot_rm/grub/i386-pc/f2fs.mod
/boot/efi/boot_rm/grub/i386-pc/macbless.mod
/boot/efi/boot_rm/grub/i386-pc/usbms.mod
/boot/efi/boot_rm/grub/i386-pc/mul_test.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_md5.mod
/boot/efi/boot_rm/grub/i386-pc/pcidump.mod
/boot/efi/boot_rm/grub/i386-pc/ahci.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_rfc2268.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_crc.mod
/boot/efi/boot_rm/grub/i386-pc/ufs1_be.mod
/boot/efi/boot_rm/grub/i386-pc/videotest_checksum.mod
/boot/efi/boot_rm/grub/i386-pc/efiemu.mod
/boot/efi/boot_rm/grub/i386-pc/crc64.mod
/boot/efi/boot_rm/grub/i386-pc/multiboot2.mod
/boot/efi/boot_rm/grub/i386-pc/video_colors.mod
/boot/efi/boot_rm/grub/i386-pc/usbserial_pl2303.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_tiger.mod
/boot/efi/boot_rm/grub/i386-pc/mdraid09.mod
/boot/efi/boot_rm/grub/i386-pc/part_sunpc.mod
/boot/efi/boot_rm/grub/i386-pc/ctz_test.mod
/boot/efi/boot_rm/grub/i386-pc/all_video.mod
/boot/efi/boot_rm/grub/i386-pc/cpuid.mod
/boot/efi/boot_rm/grub/i386-pc/bswap_test.mod
/boot/efi/boot_rm/grub/i386-pc/div_test.mod
/boot/efi/boot_rm/grub/i386-pc/reboot.mod
/boot/efi/boot_rm/grub/i386-pc/boot.mod
/boot/efi/boot_rm/grub/i386-pc/probe.mod
/boot/efi/boot_rm/grub/i386-pc/aout.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_md4.mod
/boot/efi/boot_rm/grub/i386-pc/part_dvh.mod
/boot/efi/boot_rm/grub/i386-pc/hfsplus.mod
/boot/efi/boot_rm/grub/i386-pc/play.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_cast5.mod
/boot/efi/boot_rm/grub/i386-pc/cat.mod
/boot/efi/boot_rm/grub/i386-pc/cbtable.mod
/boot/efi/boot_rm/grub/i386-pc/hfs.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_sha256.mod
/boot/efi/boot_rm/grub/i386-pc/morse.mod
/boot/efi/boot_rm/grub/i386-pc/mdraid1x.mod
/boot/efi/boot_rm/grub/i386-pc/cmp.mod
/boot/efi/boot_rm/grub/i386-pc/minix.mod
/boot/efi/boot_rm/grub/i386-pc/pbkdf2.mod
/boot/efi/boot_rm/grub/i386-pc/random.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_serpent.mod
/boot/efi/boot_rm/grub/i386-pc/cbfs.mod
/boot/efi/boot_rm/grub/i386-pc/adler32.mod
/boot/efi/boot_rm/grub/i386-pc/video_bochs.mod
/boot/efi/boot_rm/grub/i386-pc/xnu.mod
/boot/efi/boot_rm/grub/i386-pc/exfctest.mod
/boot/efi/boot_rm/grub/i386-pc/pxe.mod
/boot/efi/boot_rm/grub/i386-pc/hfspluscomp.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_des.mod
/boot/efi/boot_rm/grub/i386-pc/videotest.mod
/boot/efi/boot_rm/grub/i386-pc/png.mod
/boot/efi/boot_rm/grub/i386-pc/elf.mod
/boot/efi/boot_rm/grub/i386-pc/normal.mod
/boot/efi/boot_rm/grub/i386-pc/cbtime.mod
/boot/efi/boot_rm/grub/i386-pc/keylayouts.mod
/boot/efi/boot_rm/grub/i386-pc/gzio.mod
/boot/efi/boot_rm/grub/i386-pc/reiserfs.mod
/boot/efi/boot_rm/grub/i386-pc/cmosdump.mod
/boot/efi/boot_rm/grub/i386-pc/acpi.mod
/boot/efi/boot_rm/grub/i386-pc/plainmount.mod
/boot/efi/boot_rm/grub/i386-pc/ufs2.mod
/boot/efi/boot_rm/grub/i386-pc/chain.mod
/boot/efi/boot_rm/grub/i386-pc/tftp.mod
/boot/efi/boot_rm/grub/i386-pc/sendkey.mod
/boot/efi/boot_rm/grub/i386-pc/memrw.mod
/boot/efi/boot_rm/grub/i386-pc/luks2.mod
/boot/efi/boot_rm/grub/i386-pc/cs5536.mod
/boot/efi/boot_rm/grub/i386-pc/http.mod
/boot/efi/boot_rm/grub/i386-pc/lsmmap.mod
/boot/efi/boot_rm/grub/i386-pc/cbls.mod
/boot/efi/boot_rm/grub/i386-pc/lspci.mod
/boot/efi/boot_rm/grub/i386-pc/ufs1.mod
/boot/efi/boot_rm/grub/i386-pc/json.mod
/boot/efi/boot_rm/grub/i386-pc/affs.mod
/boot/efi/boot_rm/grub/i386-pc/btrfs.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_dsa.mod
/boot/efi/boot_rm/grub/i386-pc/nativedisk.mod
/boot/efi/boot_rm/grub/i386-pc/pbkdf2_test.mod
/boot/efi/boot_rm/grub/i386-pc/datetime.mod
/boot/efi/boot_rm/grub/i386-pc/jfs.mod
/boot/efi/boot_rm/grub/i386-pc/dm_nv.mod
/boot/efi/boot_rm/grub/i386-pc/shift_test.mod
/boot/efi/boot_rm/grub/i386-pc/regexp.mod
/boot/efi/boot_rm/grub/i386-pc/scsi.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_rmd160.mod
/boot/efi/boot_rm/grub/i386-pc/videoinfo.mod
/boot/efi/boot_rm/grub/i386-pc/at_keyboard.mod
/boot/efi/boot_rm/grub/i386-pc/setjmp_test.mod
/boot/efi/boot_rm/grub/i386-pc/terminfo.mod
/boot/efi/boot_rm/grub/i386-pc/gettext.mod
/boot/efi/boot_rm/grub/i386-pc/uhci.mod
/boot/efi/boot_rm/grub/i386-pc/part_sun.mod
/boot/efi/boot_rm/grub/i386-pc/lzopio.mod
/boot/efi/boot_rm/grub/i386-pc/minix3_be.mod
/boot/efi/boot_rm/grub/i386-pc/usbserial_common.mod
/boot/efi/boot_rm/grub/i386-pc/loadenv.mod
/boot/efi/boot_rm/grub/i386-pc/xnu_uuid.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_twofish.mod
/boot/efi/boot_rm/grub/i386-pc/xfs.mod
/boot/efi/boot_rm/grub/i386-pc/part_amiga.mod
/boot/efi/boot_rm/grub/i386-pc/hashsum.mod
/boot/efi/boot_rm/grub/i386-pc/search_fs_file.mod
/boot/efi/boot_rm/grub/i386-pc/priority_queue.mod
/boot/efi/boot_rm/grub/i386-pc/legacy_password_test.mod
/boot/efi/boot_rm/grub/i386-pc/gfxterm_menu.mod
/boot/efi/boot_rm/grub/i386-pc/ntfs.mod
/boot/efi/boot_rm/grub/i386-pc/test.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_arcfour.mod
/boot/efi/boot_rm/grub/i386-pc/tar.mod
/boot/efi/boot_rm/grub/i386-pc/search_label.mod
/boot/efi/boot_rm/grub/i386-pc/mdraid09_be.mod
/boot/efi/boot_rm/grub/i386-pc/extcmd.mod
/boot/efi/boot_rm/grub/i386-pc/blocklist.mod
/boot/efi/boot_rm/grub/i386-pc/pxechain.mod
/boot/efi/boot_rm/grub/i386-pc/cacheinfo.mod
/boot/efi/boot_rm/grub/i386-pc/offsetio.mod
/boot/efi/boot_rm/grub/i386-pc/odc.mod
/boot/efi/boot_rm/grub/i386-pc/ls.mod
/boot/efi/boot_rm/grub/i386-pc/hexdump.mod
/boot/efi/boot_rm/grub/i386-pc/gfxmenu.mod
/boot/efi/boot_rm/grub/i386-pc/zfs.mod
/boot/efi/boot_rm/grub/i386-pc/truecrypt.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_camellia.mod
/boot/efi/boot_rm/grub/i386-pc/configfile.mod
/boot/efi/boot_rm/grub/i386-pc/nilfs2.mod
/boot/efi/boot_rm/grub/i386-pc/sleep.mod
/boot/efi/boot_rm/grub/i386-pc/luks.mod
/boot/efi/boot_rm/grub/i386-pc/gcry_blowfish.mod
/boot/efi/boot_rm/grub/i386-pc/drivemap.mod
/boot/efi/boot_rm/grub/i386-pc/zstd.mod
/boot/efi/boot_rm/grub/i386-pc/functional_test.mod
/boot/efi/boot_rm/grub/i386-pc/ext2.mod
/boot/efi/boot_rm/grub/i386-pc/parttool.mod
/boot/efi/boot_rm/grub/i386-pc/plan9.mod
/boot/efi/boot_rm/grub/i386-pc/afs.mod
/boot/efi/boot_rm/grub/i386-pc/search.mod
/boot/efi/boot_rm/grub/i386-pc/lsapm.mod
/boot/efi/boot_rm/grub/i386-pc/cpio.mod
/boot/efi/boot_rm/grub/i386-pc/lvm.mod
/boot/efi/boot_rm/grub/i386-pc/testload.mod
/boot/efi/boot_rm/grub/i386-pc/test_blockarg.mod
/boot/efi/boot_rm/grub/i386-pc/raid6rec.mod
/boot/efi/boot_rm/grub/i386-pc/macho.mod
/boot/efi/boot_rm/grub/i386-pc/archelp.mod
/boot/efi/boot_rm/grub/i386-pc/legacycfg.mod
/boot/efi/boot_rm/grub/i386-pc/true.mod
/boot/efi/boot_rm/grub/i386-pc/fshelp.mod
/boot/efi/boot_rm/grub/i386-pc/ntldr.mod
/boot/efi/boot_rm/grub/i386-pc/gfxterm.mod
/boot/efi/boot_rm/grub/i386-pc/usbtest.mod
/boot/efi/boot_rm/grub/i386-pc/efiemu32.o
/boot/efi/boot_rm/grub/i386-pc/efiemu64.o
/boot/efi/boot_rm/grub/i386-pc/moddep.lst
/boot/efi/boot_rm/grub/i386-pc/command.lst
/boot/efi/boot_rm/grub/i386-pc/fs.lst
/boot/efi/boot_rm/grub/i386-pc/partmap.lst
/boot/efi/boot_rm/grub/i386-pc/parttool.lst
/boot/efi/boot_rm/grub/i386-pc/video.lst
/boot/efi/boot_rm/grub/i386-pc/crypto.lst
/boot/efi/boot_rm/grub/i386-pc/terminal.lst
/boot/efi/boot_rm/grub/i386-pc/modinfo.sh
/boot/efi/boot_rm/grub/i386-pc/core.img
/boot/efi/boot_rm/grub/i386-pc/boot.img
/boot/efi/boot_rm/grub/locale
/boot/efi/boot_rm/grub/locale/es.mo
/boot/efi/boot_rm/grub/locale/nb.mo
/boot/efi/boot_rm/grub/locale/ro.mo
/boot/efi/boot_rm/grub/locale/pt.mo
/boot/efi/boot_rm/grub/locale/uk.mo
/boot/efi/boot_rm/grub/locale/it.mo
/boot/efi/boot_rm/grub/locale/ru.mo
/boot/efi/boot_rm/grub/locale/ka.mo
/boot/efi/boot_rm/grub/locale/de@hebrew.mo
/boot/efi/boot_rm/grub/locale/vi.mo
/boot/efi/boot_rm/grub/locale/en@quot.mo
/boot/efi/boot_rm/grub/locale/ja.mo
/boot/efi/boot_rm/grub/locale/de_CH.mo
/boot/efi/boot_rm/grub/locale/pt_BR.mo
/boot/efi/boot_rm/grub/locale/fi.mo
/boot/efi/boot_rm/grub/locale/id.mo
/boot/efi/boot_rm/grub/locale/sl.mo
/boot/efi/boot_rm/grub/locale/ast.mo
/boot/efi/boot_rm/grub/locale/nl.mo
/boot/efi/boot_rm/grub/locale/sr.mo
/boot/efi/boot_rm/grub/locale/en@arabic.mo
/boot/efi/boot_rm/grub/locale/fr.mo
/boot/efi/boot_rm/grub/locale/hr.mo
/boot/efi/boot_rm/grub/locale/lt.mo
/boot/efi/boot_rm/grub/locale/hu.mo
/boot/efi/boot_rm/grub/locale/en@cyrillic.mo
/boot/efi/boot_rm/grub/locale/de.mo
/boot/efi/boot_rm/grub/locale/sv.mo
/boot/efi/boot_rm/grub/locale/eo.mo
/boot/efi/boot_rm/grub/locale/zh_TW.mo
/boot/efi/boot_rm/grub/locale/en@greek.mo
/boot/efi/boot_rm/grub/locale/gl.mo
/boot/efi/boot_rm/grub/locale/da.mo
/boot/efi/boot_rm/grub/locale/pl.mo
/boot/efi/boot_rm/grub/locale/tr.mo
/boot/efi/boot_rm/grub/locale/ca.mo
/boot/efi/boot_rm/grub/locale/ko.mo
/boot/efi/boot_rm/grub/locale/en@hebrew.mo
/boot/efi/boot_rm/grub/locale/en@piglatin.mo
/boot/efi/boot_rm/grub/locale/pa.mo
/boot/efi/boot_rm/grub/locale/zh_CN.mo
/boot/efi/boot_rm/grub/locale/lg.mo
/boot/efi/boot_rm/grub/themes
/boot/efi/boot_rm/grub/themes/starfield
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_sw.png
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_ne.png
/boot/efi/boot_rm/grub/themes/starfield/slider_c.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_ne.png
/boot/efi/boot_rm/grub/themes/starfield/COPYING.CC-BY-SA-3.0
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_c.png
/boot/efi/boot_rm/grub/themes/starfield/slider_n.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_e.png
/boot/efi/boot_rm/grub/themes/starfield/dejavu_16.pf2
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_w.png
/boot/efi/boot_rm/grub/themes/starfield/slider_s.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_w.png
/boot/efi/boot_rm/grub/themes/starfield/dejavu_10.pf2
/boot/efi/boot_rm/grub/themes/starfield/theme.txt
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_se.png
/boot/efi/boot_rm/grub/themes/starfield/dejavu_bold_14.pf2
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_c.png
/boot/efi/boot_rm/grub/themes/starfield/README
/boot/efi/boot_rm/grub/themes/starfield/dejavu_14.pf2
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_s.png
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_se.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_sw.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_n.png
/boot/efi/boot_rm/grub/themes/starfield/terminal_box_nw.png
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_s.png
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_nw.png
/boot/efi/boot_rm/grub/themes/starfield/starfield.png
/boot/efi/boot_rm/grub/themes/starfield/dejavu_12.pf2
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_n.png
/boot/efi/boot_rm/grub/themes/starfield/boot_menu_e.png
/boot/efi/boot_rm/grub/themes/starfield/blob_w.png
/boot/efi/boot_rm/grub/themes/Vimix
/boot/efi/boot_rm/grub/themes/Vimix/DejaVuSans.ttf
/boot/efi/boot_rm/grub/themes/Vimix/archcraft.png
/boot/efi/boot_rm/grub/themes/Vimix/archlinux01.png
/boot/efi/boot_rm/grub/themes/Vimix/archlinux02.png
/boot/efi/boot_rm/grub/themes/Vimix/archlinux03.jpg
/boot/efi/boot_rm/grub/themes/Vimix/archlinux04.jpg
/boot/efi/boot_rm/grub/themes/Vimix/archlinux05.png
/boot/efi/boot_rm/grub/themes/Vimix/archlinux06.jpg
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux.png
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux01.jpg
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux02.jpg
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux03.jpg
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux04.jpg
/boot/efi/boot_rm/grub/themes/Vimix/arcolinux05.jpg
/boot/efi/boot_rm/grub/themes/Vimix/axyl.jpg
/boot/efi/boot_rm/grub/themes/Vimix/background-stylish.jpg
/boot/efi/boot_rm/grub/themes/Vimix/background-tela.jpg
/boot/efi/boot_rm/grub/themes/Vimix/background-vimix.jpg
/boot/efi/boot_rm/grub/themes/Vimix/background.png
/boot/efi/boot_rm/grub/themes/Vimix/bg1.png
/boot/efi/boot_rm/grub/themes/Vimix/bg10.png
/boot/efi/boot_rm/grub/themes/Vimix/bg11.png
/boot/efi/boot_rm/grub/themes/Vimix/bg12.png
/boot/efi/boot_rm/grub/themes/Vimix/bg13.png
/boot/efi/boot_rm/grub/themes/Vimix/bg14.png
/boot/efi/boot_rm/grub/themes/Vimix/bg15.png
/boot/efi/boot_rm/grub/themes/Vimix/bg16.png
/boot/efi/boot_rm/grub/themes/Vimix/bg2.png
/boot/efi/boot_rm/grub/themes/Vimix/bg3.png
/boot/efi/boot_rm/grub/themes/Vimix/bg4.png
/boot/efi/boot_rm/grub/themes/Vimix/bg5.png
/boot/efi/boot_rm/grub/themes/Vimix/bg6.png
/boot/efi/boot_rm/grub/themes/Vimix/bg7.png
/boot/efi/boot_rm/grub/themes/Vimix/bg8.png
/boot/efi/boot_rm/grub/themes/Vimix/bg9.png
/boot/efi/boot_rm/grub/themes/Vimix/color1.png
/boot/efi/boot_rm/grub/themes/Vimix/color2.png
/boot/efi/boot_rm/grub/themes/Vimix/color3.png
/boot/efi/boot_rm/grub/themes/Vimix/color4.png
/boot/efi/boot_rm/grub/themes/Vimix/color5.png
/boot/efi/boot_rm/grub/themes/Vimix/color6.png
/boot/efi/boot_rm/grub/themes/Vimix/colors.png
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_12.pf2
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_14.pf2
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_16.pf2
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_24.pf2
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_32.pf2
/boot/efi/boot_rm/grub/themes/Vimix/dejavu_sans_48.pf2
/boot/efi/boot_rm/grub/themes/Vimix/eos.png
/boot/efi/boot_rm/grub/themes/Vimix/garuda.png
/boot/efi/boot_rm/grub/themes/Vimix/icons
/boot/efi/boot_rm/grub/themes/Vimix/icons/4MLinux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/AlpineLinux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/Manjaro.i686.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/Manjaro.x86_64.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/SystemRescueCD.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/android.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/anonymous.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/antergos.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/arch.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/archlinux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/arcolinux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/arcolinuxb.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/arcolinuxd.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/artix.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/cancel.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/chakra.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/debian.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/deepin.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/devuan.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/driver.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/edit.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/efi.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/elementary.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/endeavouros.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/fedora.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/find.efi.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/find.none.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/freebsd.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/gentoo.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/gnu-linux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/gpart.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/haiku.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/help.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/kali.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/kaos.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/kbd.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/kernel.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/korora.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/kubuntu.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/lang.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/lfs.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/linux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/linuxmint.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/lubuntu.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/macosx.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/mageia.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/manjaro.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/manjarolinux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/memtest.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/mx-linux.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/neon.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/opensuse.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/parrot.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/pop-os.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/pop.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/recovery.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/regolith.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/restart.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/shutdown.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/siduction.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/solus.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/steamos.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/submenu.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/type.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/tz.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/ubuntu.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/unknown.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/unset.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/void.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/windows.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/xubuntu.png
/boot/efi/boot_rm/grub/themes/Vimix/icons/zorin.png
/boot/efi/boot_rm/grub/themes/Vimix/select_c.png
/boot/efi/boot_rm/grub/themes/Vimix/select_e.png
/boot/efi/boot_rm/grub/themes/Vimix/select_w.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_c.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_e.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_n.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_ne.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_nw.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_s.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_se.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_sw.png
/boot/efi/boot_rm/grub/themes/Vimix/terminal_box_w.png
/boot/efi/boot_rm/grub/themes/Vimix/terminus-12.pf2
/boot/efi/boot_rm/grub/themes/Vimix/terminus-14.pf2
/boot/efi/boot_rm/grub/themes/Vimix/terminus-16.pf2
/boot/efi/boot_rm/grub/themes/Vimix/terminus-18.pf2
/boot/efi/boot_rm/grub/themes/Vimix/theme.txt
/boot/efi/boot_rm/grub/themes/Vimix/unifont-regular-16.pf2
/boot/efi/boot_rm/grub/themes/Vimix/theme.txt.bak
/boot/efi/boot_rm/grub/fonts
/boot/efi/boot_rm/grub/fonts/unicode.pf2
/boot/efi/boot_rm/grub/x86_64-efi
/boot/efi/boot_rm/grub/x86_64-efi/linux16.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_idea.mod
/boot/efi/boot_rm/grub/x86_64-efi/crypto.mod
/boot/efi/boot_rm/grub/x86_64-efi/hello.mod
/boot/efi/boot_rm/grub/x86_64-efi/gptsync.mod
/boot/efi/boot_rm/grub/x86_64-efi/spkmodem.mod
/boot/efi/boot_rm/grub/x86_64-efi/romfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/squash4.mod
/boot/efi/boot_rm/grub/x86_64-efi/help.mod
/boot/efi/boot_rm/grub/x86_64-efi/syslinuxcfg.mod
/boot/efi/boot_rm/grub/x86_64-efi/lsefisystab.mod
/boot/efi/boot_rm/grub/x86_64-efi/procfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/efi_uga.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix2.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_bsd.mod
/boot/efi/boot_rm/grub/x86_64-efi/bfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/keystatus.mod
/boot/efi/boot_rm/grub/x86_64-efi/sfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/cmp_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbserial_ftdi.mod
/boot/efi/boot_rm/grub/x86_64-efi/password_pbkdf2.mod
/boot/efi/boot_rm/grub/x86_64-efi/udf.mod
/boot/efi/boot_rm/grub/x86_64-efi/trig.mod
/boot/efi/boot_rm/grub/x86_64-efi/tr.mod
/boot/efi/boot_rm/grub/x86_64-efi/serial.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_acorn.mod
/boot/efi/boot_rm/grub/x86_64-efi/diskfilter.mod
/boot/efi/boot_rm/grub/x86_64-efi/iorw.mod
/boot/efi/boot_rm/grub/x86_64-efi/zfsinfo.mod
/boot/efi/boot_rm/grub/x86_64-efi/rdmsr.mod
/boot/efi/boot_rm/grub/x86_64-efi/fat.mod
/boot/efi/boot_rm/grub/x86_64-efi/lsacpi.mod
/boot/efi/boot_rm/grub/x86_64-efi/datehook.mod
/boot/efi/boot_rm/grub/x86_64-efi/efi_gop.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix2_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_seed.mod
/boot/efi/boot_rm/grub/x86_64-efi/tpm.mod
/boot/efi/boot_rm/grub/x86_64-efi/efifwsetup.mod
/boot/efi/boot_rm/grub/x86_64-efi/pgp.mod
/boot/efi/boot_rm/grub/x86_64-efi/backtrace.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_plan.mod
/boot/efi/boot_rm/grub/x86_64-efi/mmap.mod
/boot/efi/boot_rm/grub/x86_64-efi/disk.mod
/boot/efi/boot_rm/grub/x86_64-efi/hdparm.mod
/boot/efi/boot_rm/grub/x86_64-efi/usb.mod
/boot/efi/boot_rm/grub/x86_64-efi/net.mod
/boot/efi/boot_rm/grub/x86_64-efi/lssal.mod
/boot/efi/boot_rm/grub/x86_64-efi/xzio.mod
/boot/efi/boot_rm/grub/x86_64-efi/video.mod
/boot/efi/boot_rm/grub/x86_64-efi/wrmsr.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbserial_usbdebug.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_sha512.mod
/boot/efi/boot_rm/grub/x86_64-efi/relocator.mod
/boot/efi/boot_rm/grub/x86_64-efi/exfat.mod
/boot/efi/boot_rm/grub/x86_64-efi/ehci.mod
/boot/efi/boot_rm/grub/x86_64-efi/signature_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/search_fs_uuid.mod
/boot/efi/boot_rm/grub/x86_64-efi/mpi.mod
/boot/efi/boot_rm/grub/x86_64-efi/setpci.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_apple.mod
/boot/efi/boot_rm/grub/x86_64-efi/iso9660.mod
/boot/efi/boot_rm/grub/x86_64-efi/progress.mod
/boot/efi/boot_rm/grub/x86_64-efi/date.mod
/boot/efi/boot_rm/grub/x86_64-efi/sleep_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/memdisk.mod
/boot/efi/boot_rm/grub/x86_64-efi/halt.mod
/boot/efi/boot_rm/grub/x86_64-efi/video_fb.mod
/boot/efi/boot_rm/grub/x86_64-efi/font.mod
/boot/efi/boot_rm/grub/x86_64-efi/smbios.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix3.mod
/boot/efi/boot_rm/grub/x86_64-efi/read.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_rijndael.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_gpt.mod
/boot/efi/boot_rm/grub/x86_64-efi/minicmd.mod
/boot/efi/boot_rm/grub/x86_64-efi/cmdline_cat_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/pata.mod
/boot/efi/boot_rm/grub/x86_64-efi/usb_keyboard.mod
/boot/efi/boot_rm/grub/x86_64-efi/gfxterm_background.mod
/boot/efi/boot_rm/grub/x86_64-efi/boottime.mod
/boot/efi/boot_rm/grub/x86_64-efi/setjmp.mod
/boot/efi/boot_rm/grub/x86_64-efi/xnu_uuid_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/ata.mod
/boot/efi/boot_rm/grub/x86_64-efi/tga.mod
/boot/efi/boot_rm/grub/x86_64-efi/bitmap.mod
/boot/efi/boot_rm/grub/x86_64-efi/cryptodisk.mod
/boot/efi/boot_rm/grub/x86_64-efi/zfscrypt.mod
/boot/efi/boot_rm/grub/x86_64-efi/multiboot.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_sha1.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_whirlpool.mod
/boot/efi/boot_rm/grub/x86_64-efi/terminal.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/linux.mod
/boot/efi/boot_rm/grub/x86_64-efi/time.mod
/boot/efi/boot_rm/grub/x86_64-efi/jpeg.mod
/boot/efi/boot_rm/grub/x86_64-efi/bsd.mod
/boot/efi/boot_rm/grub/x86_64-efi/newc.mod
/boot/efi/boot_rm/grub/x86_64-efi/ntfscomp.mod
/boot/efi/boot_rm/grub/x86_64-efi/div.mod
/boot/efi/boot_rm/grub/x86_64-efi/testspeed.mod
/boot/efi/boot_rm/grub/x86_64-efi/loopback.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_msdos.mod
/boot/efi/boot_rm/grub/x86_64-efi/cbmemc.mod
/boot/efi/boot_rm/grub/x86_64-efi/msdospart.mod
/boot/efi/boot_rm/grub/x86_64-efi/video_cirrus.mod
/boot/efi/boot_rm/grub/x86_64-efi/raid5rec.mod
/boot/efi/boot_rm/grub/x86_64-efi/bitmap_scale.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_dfly.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_rsa.mod
/boot/efi/boot_rm/grub/x86_64-efi/echo.mod
/boot/efi/boot_rm/grub/x86_64-efi/cpio_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/bufio.mod
/boot/efi/boot_rm/grub/x86_64-efi/password.mod
/boot/efi/boot_rm/grub/x86_64-efi/geli.mod
/boot/efi/boot_rm/grub/x86_64-efi/eval.mod
/boot/efi/boot_rm/grub/x86_64-efi/ldm.mod
/boot/efi/boot_rm/grub/x86_64-efi/ohci.mod
/boot/efi/boot_rm/grub/x86_64-efi/strtoull_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/afsplitter.mod
/boot/efi/boot_rm/grub/x86_64-efi/file.mod
/boot/efi/boot_rm/grub/x86_64-efi/f2fs.mod
/boot/efi/boot_rm/grub/x86_64-efi/macbless.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbms.mod
/boot/efi/boot_rm/grub/x86_64-efi/mul_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_md5.mod
/boot/efi/boot_rm/grub/x86_64-efi/pcidump.mod
/boot/efi/boot_rm/grub/x86_64-efi/ahci.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_rfc2268.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_crc.mod
/boot/efi/boot_rm/grub/x86_64-efi/ufs1_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/videotest_checksum.mod
/boot/efi/boot_rm/grub/x86_64-efi/crc64.mod
/boot/efi/boot_rm/grub/x86_64-efi/multiboot2.mod
/boot/efi/boot_rm/grub/x86_64-efi/video_colors.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbserial_pl2303.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_tiger.mod
/boot/efi/boot_rm/grub/x86_64-efi/mdraid09.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_sunpc.mod
/boot/efi/boot_rm/grub/x86_64-efi/ctz_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/all_video.mod
/boot/efi/boot_rm/grub/x86_64-efi/cpuid.mod
/boot/efi/boot_rm/grub/x86_64-efi/efitextmode.mod
/boot/efi/boot_rm/grub/x86_64-efi/bswap_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/div_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/reboot.mod
/boot/efi/boot_rm/grub/x86_64-efi/boot.mod
/boot/efi/boot_rm/grub/x86_64-efi/probe.mod
/boot/efi/boot_rm/grub/x86_64-efi/aout.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_md4.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_dvh.mod
/boot/efi/boot_rm/grub/x86_64-efi/hfsplus.mod
/boot/efi/boot_rm/grub/x86_64-efi/play.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_cast5.mod
/boot/efi/boot_rm/grub/x86_64-efi/cat.mod
/boot/efi/boot_rm/grub/x86_64-efi/cbtable.mod
/boot/efi/boot_rm/grub/x86_64-efi/hfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_sha256.mod
/boot/efi/boot_rm/grub/x86_64-efi/morse.mod
/boot/efi/boot_rm/grub/x86_64-efi/mdraid1x.mod
/boot/efi/boot_rm/grub/x86_64-efi/cmp.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix.mod
/boot/efi/boot_rm/grub/x86_64-efi/pbkdf2.mod
/boot/efi/boot_rm/grub/x86_64-efi/random.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_serpent.mod
/boot/efi/boot_rm/grub/x86_64-efi/cbfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/adler32.mod
/boot/efi/boot_rm/grub/x86_64-efi/video_bochs.mod
/boot/efi/boot_rm/grub/x86_64-efi/xnu.mod
/boot/efi/boot_rm/grub/x86_64-efi/exfctest.mod
/boot/efi/boot_rm/grub/x86_64-efi/hfspluscomp.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_des.mod
/boot/efi/boot_rm/grub/x86_64-efi/videotest.mod
/boot/efi/boot_rm/grub/x86_64-efi/png.mod
/boot/efi/boot_rm/grub/x86_64-efi/elf.mod
/boot/efi/boot_rm/grub/x86_64-efi/normal.mod
/boot/efi/boot_rm/grub/x86_64-efi/cbtime.mod
/boot/efi/boot_rm/grub/x86_64-efi/keylayouts.mod
/boot/efi/boot_rm/grub/x86_64-efi/gzio.mod
/boot/efi/boot_rm/grub/x86_64-efi/reiserfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/acpi.mod
/boot/efi/boot_rm/grub/x86_64-efi/plainmount.mod
/boot/efi/boot_rm/grub/x86_64-efi/appleldr.mod
/boot/efi/boot_rm/grub/x86_64-efi/ufs2.mod
/boot/efi/boot_rm/grub/x86_64-efi/chain.mod
/boot/efi/boot_rm/grub/x86_64-efi/loadbios.mod
/boot/efi/boot_rm/grub/x86_64-efi/tftp.mod
/boot/efi/boot_rm/grub/x86_64-efi/memrw.mod
/boot/efi/boot_rm/grub/x86_64-efi/luks2.mod
/boot/efi/boot_rm/grub/x86_64-efi/cs5536.mod
/boot/efi/boot_rm/grub/x86_64-efi/http.mod
/boot/efi/boot_rm/grub/x86_64-efi/lsmmap.mod
/boot/efi/boot_rm/grub/x86_64-efi/cbls.mod
/boot/efi/boot_rm/grub/x86_64-efi/lspci.mod
/boot/efi/boot_rm/grub/x86_64-efi/ufs1.mod
/boot/efi/boot_rm/grub/x86_64-efi/json.mod
/boot/efi/boot_rm/grub/x86_64-efi/affs.mod
/boot/efi/boot_rm/grub/x86_64-efi/efinet.mod
/boot/efi/boot_rm/grub/x86_64-efi/btrfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_dsa.mod
/boot/efi/boot_rm/grub/x86_64-efi/nativedisk.mod
/boot/efi/boot_rm/grub/x86_64-efi/pbkdf2_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/datetime.mod
/boot/efi/boot_rm/grub/x86_64-efi/jfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/dm_nv.mod
/boot/efi/boot_rm/grub/x86_64-efi/shift_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/regexp.mod
/boot/efi/boot_rm/grub/x86_64-efi/scsi.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_rmd160.mod
/boot/efi/boot_rm/grub/x86_64-efi/videoinfo.mod
/boot/efi/boot_rm/grub/x86_64-efi/at_keyboard.mod
/boot/efi/boot_rm/grub/x86_64-efi/setjmp_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/terminfo.mod
/boot/efi/boot_rm/grub/x86_64-efi/lsefimmap.mod
/boot/efi/boot_rm/grub/x86_64-efi/gettext.mod
/boot/efi/boot_rm/grub/x86_64-efi/uhci.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_sun.mod
/boot/efi/boot_rm/grub/x86_64-efi/lzopio.mod
/boot/efi/boot_rm/grub/x86_64-efi/minix3_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbserial_common.mod
/boot/efi/boot_rm/grub/x86_64-efi/loadenv.mod
/boot/efi/boot_rm/grub/x86_64-efi/xnu_uuid.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_twofish.mod
/boot/efi/boot_rm/grub/x86_64-efi/xfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/lsefi.mod
/boot/efi/boot_rm/grub/x86_64-efi/part_amiga.mod
/boot/efi/boot_rm/grub/x86_64-efi/hashsum.mod
/boot/efi/boot_rm/grub/x86_64-efi/search_fs_file.mod
/boot/efi/boot_rm/grub/x86_64-efi/priority_queue.mod
/boot/efi/boot_rm/grub/x86_64-efi/legacy_password_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/gfxterm_menu.mod
/boot/efi/boot_rm/grub/x86_64-efi/ntfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/test.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_arcfour.mod
/boot/efi/boot_rm/grub/x86_64-efi/tar.mod
/boot/efi/boot_rm/grub/x86_64-efi/search_label.mod
/boot/efi/boot_rm/grub/x86_64-efi/mdraid09_be.mod
/boot/efi/boot_rm/grub/x86_64-efi/extcmd.mod
/boot/efi/boot_rm/grub/x86_64-efi/blocklist.mod
/boot/efi/boot_rm/grub/x86_64-efi/cacheinfo.mod
/boot/efi/boot_rm/grub/x86_64-efi/offsetio.mod
/boot/efi/boot_rm/grub/x86_64-efi/odc.mod
/boot/efi/boot_rm/grub/x86_64-efi/ls.mod
/boot/efi/boot_rm/grub/x86_64-efi/hexdump.mod
/boot/efi/boot_rm/grub/x86_64-efi/gfxmenu.mod
/boot/efi/boot_rm/grub/x86_64-efi/zfs.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_camellia.mod
/boot/efi/boot_rm/grub/x86_64-efi/configfile.mod
/boot/efi/boot_rm/grub/x86_64-efi/nilfs2.mod
/boot/efi/boot_rm/grub/x86_64-efi/sleep.mod
/boot/efi/boot_rm/grub/x86_64-efi/luks.mod
/boot/efi/boot_rm/grub/x86_64-efi/gcry_blowfish.mod
/boot/efi/boot_rm/grub/x86_64-efi/zstd.mod
/boot/efi/boot_rm/grub/x86_64-efi/functional_test.mod
/boot/efi/boot_rm/grub/x86_64-efi/ext2.mod
/boot/efi/boot_rm/grub/x86_64-efi/parttool.mod
/boot/efi/boot_rm/grub/x86_64-efi/afs.mod
/boot/efi/boot_rm/grub/x86_64-efi/search.mod
/boot/efi/boot_rm/grub/x86_64-efi/cpio.mod
/boot/efi/boot_rm/grub/x86_64-efi/lvm.mod
/boot/efi/boot_rm/grub/x86_64-efi/testload.mod
/boot/efi/boot_rm/grub/x86_64-efi/test_blockarg.mod
/boot/efi/boot_rm/grub/x86_64-efi/raid6rec.mod
/boot/efi/boot_rm/grub/x86_64-efi/macho.mod
/boot/efi/boot_rm/grub/x86_64-efi/archelp.mod
/boot/efi/boot_rm/grub/x86_64-efi/legacycfg.mod
/boot/efi/boot_rm/grub/x86_64-efi/true.mod
/boot/efi/boot_rm/grub/x86_64-efi/fixvideo.mod
/boot/efi/boot_rm/grub/x86_64-efi/fshelp.mod
/boot/efi/boot_rm/grub/x86_64-efi/gfxterm.mod
/boot/efi/boot_rm/grub/x86_64-efi/usbtest.mod
/boot/efi/boot_rm/grub/x86_64-efi/moddep.lst
/boot/efi/boot_rm/grub/x86_64-efi/command.lst
/boot/efi/boot_rm/grub/x86_64-efi/fs.lst
/boot/efi/boot_rm/grub/x86_64-efi/partmap.lst
/boot/efi/boot_rm/grub/x86_64-efi/parttool.lst
/boot/efi/boot_rm/grub/x86_64-efi/video.lst
/boot/efi/boot_rm/grub/x86_64-efi/crypto.lst
/boot/efi/boot_rm/grub/x86_64-efi/terminal.lst
/boot/efi/boot_rm/grub/x86_64-efi/modinfo.sh
/boot/efi/boot_rm/grub/x86_64-efi/core.efi
/boot/efi/boot_rm/grub/x86_64-efi/grub.efi
/boot/efi/boot_rm/grub/grubenv
/boot/efi/boot_rm/vmlinuz-linux
/boot/efi/boot_rm/initramfs-linux.imgOffline
Hi,
do you have these automatic grub things enabled? I ask because I migrated from syslinux to grub some time ago and edit my grub.cfg manually. I never enabled anything like this.
If a menu entry actually boots a previously uninstalled Arch LTS kernel, then something must be going on automatically.
My grub.cfg is quite lean and contains entries for Arch's linux and linux-lts.
• rocketmouse@archlinux ~
$ cat /boot/grub/grub.cfg
play 1920 440 1 0 1 880 2 0 1 880 1 0 1 440 2
set timeout=60
set color_normal=light-gray/black
set color_highlight=white/light-gray
set menu_color_normal=light-gray/black
set menu_color_highlight=white/light-gray
set default="1"
insmod efi_gop
menuentry " -- HAL 9000-m1 -----------------------------------------------------------------" {
true
}
menuentry " MemTest86 V10+ Free" {
search --set=root --no-floppy --fs-uuid 3F5B-F698
chainloader /EFI/memtest86/memtestx64.efi
}
menuentry " -- Arch Linux ------------------------------------------------------------------" {
true
}
menuentry " Arch Linux threadirqs" {
search --no-floppy --set=root --label m1.archlinux
linux /boot/vmlinuz-linux root=/dev/disk/by-label/m1.archlinux ro threadirqs ibt=off ipv6.disable=1
initrd /boot/intel-ucode.img /boot/initramfs-linux.img
}
menuentry " Arch Linux" {
search --no-floppy --set=root --label m1.archlinux
linux /boot/vmlinuz-linux root=/dev/disk/by-label/m1.archlinux ro ibt=off ipv6.disable=1
initrd /boot/intel-ucode.img /boot/initramfs-linux.img
}
menuentry " Arch Linux Longterm" {
search --no-floppy --set=root --label m1.archlinux
linux /boot/vmlinuz-linux-lts root=/dev/disk/by-label/m1.archlinux ro ibt=off ipv6.disable=1
initrd /boot/intel-ucode.img /boot/initramfs-linux-lts.img
}
menuentry " Arch Linux Rt" {
search --no-floppy --set=root --label m1.archlinux
linux /boot/vmlinuz-linux-rt root=/dev/disk/by-label/m1.archlinux ro ibt=off ipv6.disable=1
initrd /boot/intel-ucode.img /boot/initramfs-linux-rt.img
}
menuentry " -- Other Linux -----------------------------------------------------------------" {
true
}
menuentry " Alpine Linux" {
search --no-floppy --set=root --label m1.alpine
linux /boot/vmlinuz-lts root=/dev/disk/by-label/m1.alpine ro modules=ext4
initrd /boot/initramfs-lts
}
menuentry " Xubu 20.04 Linux 6.2.9-custom" {
search --no-floppy --set=root --label m1.xubu20.04
linux /boot/vmlinuz-6.2.9-custom root=/dev/disk/by-label/m1.xubu20.04 ro
initrd /boot/initrd.img-6.2.9-custom
}
menuentry " Ubuntu X Moon Studio lowlatency" {
search --no-floppy --set=root --label m1.archlinux
linux /.boot/ubuntu_moonstudio/boot/vmlinuz-lowlatency root=/dev/disk/by-label/moonstudio ro
initrd /.boot/ubuntu_moonstudio/boot/initrd.img-lowlatency
}
submenu " *buntu -- Submenu --" {
menuentry " Xubu 20.04 Linux 6.2.9-custom (recovery mode)" {
search --no-floppy --set=root --label m1.xubu20.04
linux /boot/vmlinuz-6.2.9-custom root=/dev/disk/by-label/m1.xubu20.04 ro recovery nomodeset
initrd /boot/initrd.img-6.2.9-custom
}
menuentry " Xubu 20.04 Linux 5.4.0-42-generic" {
search --no-floppy --set=root --label m1.xubu20.04
linux /boot/vmlinuz-5.4.0-42-generic root=/dev/disk/by-label/m1.xubu20.04 ro
initrd /boot/initrd.img-5.4.0-42-generic
}
menuentry " Xubu 20.04 Linux 5.4.0-42-generic (recovery mode)" {
search --no-floppy --set=root --label m1.xubu20.04
linux /boot/vmlinuz-5.4.0-42-generic root=/dev/disk/by-label/m1.xubu20.04 ro recovery nomodeset
initrd /boot/initrd.img-5.4.0-42-generic
}
menuentry " Ubuntu X Moon Studio liquorix threadirqs" {
search --no-floppy --set=root --label m1.archlinux
linux /.boot/ubuntu_moonstudio/boot/vmlinuz-liquorix root=/dev/disk/by-label/moonstudio ro threadirqs
initrd /.boot/ubuntu_moonstudio/boot/initrd.img-liquorix
}
}
menuentry " -- System ----------------------------------------------------------------------" {
true
}
menuentry " UEFI Firmware Settings" --id 'uefi-firmware' {
fwsetup
}
menuentry " Restart" {
reboot
}
menuentry " Shutdown" {
halt
}
menuentry " --------------------------------------------------------------------------------" {
true
}Regards,
Ralf
Offline
In respect of grub.cfg, the Arch entries appear to be pointing to the vanilla kernel so they wouldn't boot with the LTS version.
Can we also see
efibootmgr -u/boot/efi/ looks like a bit of a mess, frankly.
You have another grub.cfg in there along with Manjaro's GRUB files, two different GRUB theme packs, and three sets of kernel images. No wonder it's almost full ![]()
For Arch & Windows you will need the contents of /boot/efi/EFI/ but I think everything else can go. Wait until we check efibootmgr though, just to be sure.
Jin, Jîyan, Azadî
Offline
I don't mind cleaning things up.
I would rather do that than have the mess I have.
As long as I don't screw up what I have running.
I have done allot of things on this laptop so I'm not surprised some things are messy.
[demo@archlinux ~]$ efibootmgr -u
BootCurrent: 0002
Timeout: 0 seconds
BootOrder: 0002,0000,0001,9999
Boot0000* Windows Boot Manager HD(2,GPT,5758188c-330c-4b9b-a98f-e999cf7ec14e,0x109000,0xf9800)/File(\EFI\Microsoft\Boot\bootmgfw.efi)䥗䑎坏S
Boot0001* Solid State Disk PciRoot(0x0)/Pci(0x1d,0x4)/Pci(0x0,0x0)/NVMe(0x1,00-25-38-58-01-40-F1-74)/HD(2,GPT,5758188c-330c-4b9b-a98f-e999cf7ec14e,0x109000,0xf9800)
Boot0002* GRUB HD(2,GPT,5758188c-330c-4b9b-a98f-e999cf7ec14e,0x109000,0xf9800)/File(\EFI\GRUB\grubx64.efi)
Boot9999* USB Drive (UEFI) PciRoot(0x0)/Pci(0x1d,0x0)/USB(16,0)Offline
Nothing in your grub.cfg is for booting linux-lts . However, this is freakish:
### BEGIN /etc/grub.d/41_custom ###
if [ -f ${config_directory}/custom.cfg ]; then
source ${config_directory}/custom.cfg
elif [ -z "${config_directory}" -a -f $prefix/custom.cfg ]; then
source $prefix/custom.cfg
fiThere might be a custom.cfg in some path that probably doesn't add something, but might override your grub.cfg. To me this is the only explanation for your claim that "when I select the linux linux it boots to the lts kernel".
Offline
This is my uname -r
[demo@archlinux ~]$ uname -r
6.1.67-1-lts
Should I just delete those custom file or files?
Offline
One more thing I forgot to mention.
Manjaro used too control GRUB until today I changed it.
Offline
What's in /etc/mkinitcpio.d/linux-lts.preset?
Offline
[demo@archlinux ~]$ sudo cat /etc/mkinitcpio.d/linux-lts.preset
[sudo] password for demo:
# mkinitcpio preset file for the 'linux-lts' package
#ALL_config="/etc/mkinitcpio.conf"
ALL_kver="/boot/vmlinuz-linux"
ALL_microcode=(/boot/*-ucode.img)
PRESETS=('default' 'fallback')
#default_config="/etc/mkinitcpio.conf"
default_image="/boot/initramfs-linux.img"
#default_uki="/efi/EFI/Linux/arch-linux.efi"
#default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp"
#fallback_config="/etc/mkinitcpio.conf"
fallback_image="/boot/initramfs-linux-fallback.img"
#fallback_uki="/efi/EFI/Linux/arch-linux-fallback.efi"
fallback_options="-S autodetect"Offline
That's the problem, it's wrong. It's been edited from the default, and not in a good way. Move it, reinstall the -lts kernel package and you should get a default one you can compare it with. DO NOT change the ALL_kver like that again.
You'll also want to reinstall the normal kernel package to restore that to what it should be.
Last edited by Scimmia (2023-12-12 19:21:14)
Offline
There might be a custom.cfg in some path that probably doesn't add something, but might override your grub.cfg.
The grub-mkconfig script will automatically add any menuentries found in ${config_directory}/custom.cfg but it will not override the main configuration file.
Jin, Jîyan, Azadî
Offline
I think I used the custom config for the clonezilla entry but I have never used it.
Should I go ahead and do what Scimma sugested and move the lts preset and reinstall lts kernel?
Do we want to clean some stuff up first in addition to that step?
Offline
Should I go ahead and do what Scimma sugested and move the lts preset and reinstall lts kernel?
Scimma knows more than me so you should probably listen to them :-) EDIT: that "Fellow" title indicates they are ex-staff.
Do we want to clean some stuff up first in addition to that step?
Let's make sure your system boots correctly before deleting anything. Just in case.
Last edited by Head_on_a_Stick (2023-12-12 19:31:59)
Jin, Jîyan, Azadî
Offline
Ralf wrote:There might be a custom.cfg in some path that probably doesn't add something, but might override your grub.cfg.
The grub-mkconfig script will automatically add any menuentries found in ${config_directory}/custom.cfg but it will not override the main configuration file.
I don't think I like the fact that I became aware of some things like pacnew thanks to Scimmia.
• rocketmouse@archlinux ~
$ /bin/ls -hAltr /etc/mkinitcpio*
-rw-r--r-- 1 root root 2.5K Jun 29 2014 /etc/mkinitcpio.conf.vboxhost
-rw-r--r-- 1 root root 2.5K Nov 17 2016 /etc/mkinitcpio.conf.outdated_with_radeon
-rw-r--r-- 1 root root 2.5K Aug 28 2018 /etc/mkinitcpio.conf-2021-02-19.bak
-rw-r--r-- 1 root root 2.5K Feb 20 2021 /etc/mkinitcpio.conf
-rw-r--r-- 1 root root 2.8K Dec 3 13:20 /etc/mkinitcpio.conf.pacnew
/etc/mkinitcpio.conf.d:
total 0
/etc/mkinitcpio.d:
total 28K
-rw-r--r-- 1 root root 435 Nov 18 2022 linux-rt-securityink.preset.pacsave
-rw-r--r-- 1 root root 427 Dec 24 2022 linux-rt-pussytoes.preset.pacsave
-rw-r--r-- 1 root root 431 Feb 4 2023 linux-rt-cornflower.preset.pacsave
-rw-r--r-- 1 root root 403 Mar 3 2023 linux-rt-lts.preset.pacsave
-rw-r--r-- 1 root root 387 Mar 16 2023 linux-rt.preset
-rw-r--r-- 1 root root 375 Mar 19 2023 linux.preset
-rw-r--r-- 1 root root 584 May 26 2023 linux-lts.presetOffline
Ok I think I have this fixed.
Both linux main and linux-lts show up in the menu and both load correctly.
Here are the recreated files:
[demo@archlinux ~]$ sudo cat /etc/mkinitcpio.d/linux-lts.preset
[sudo] password for demo:
# mkinitcpio preset file for the 'linux-lts' package
#ALL_config="/etc/mkinitcpio.conf"
ALL_kver="/boot/vmlinuz-linux-lts"
ALL_microcode=(/boot/*-ucode.img)
PRESETS=('default' 'fallback')
#default_config="/etc/mkinitcpio.conf"
default_image="/boot/initramfs-linux-lts.img"
#default_uki="/efi/EFI/Linux/arch-linux-lts.efi"
#default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp"
#fallback_config="/etc/mkinitcpio.conf"
fallback_image="/boot/initramfs-linux-lts-fallback.img"
#fallback_uki="/efi/EFI/Linux/arch-linux-lts-fallback.efi"
fallback_options="-S autodetect"[demo@archlinux ~]$ sudo cat /etc/mkinitcpio.d/linux.preset
# mkinitcpio preset file for the 'linux' package
#ALL_config="/etc/mkinitcpio.conf"
ALL_kver="/boot/vmlinuz-linux"
ALL_microcode=(/boot/*-ucode.img)
PRESETS=('default' 'fallback')
#default_config="/etc/mkinitcpio.conf"
default_image="/boot/initramfs-linux.img"
#default_uki="/efi/EFI/Linux/arch-linux.efi"
#default_options="--splash /usr/share/systemd/bootctl/splash-arch.bmp"
#fallback_config="/etc/mkinitcpio.conf"
fallback_image="/boot/initramfs-linux-fallback.img"
#fallback_uki="/efi/EFI/Linux/arch-linux-fallback.efi"
fallback_options="-S autodetect"Offline
Fantastic. Glad Scimmia showed up, I don't think I would have thought of that ![]()
If everything's working as expected it should be fine to delete everything under /boot/efi/ except the contents of /boot/efi/EFI/.
Jin, Jîyan, Azadî
Offline
Fantastic. Glad Scimmia showed up, I don't think I would have thought of that
If everything's working as expected it should be fine to delete everything under /boot/efi/ except the contents of /boot/efi/EFI/.
So just to be sure. I hate deleting things.
Remove everything here except the EFI folder?
[root@archlinux efi]# ls -la
total 256304
drwxr-xr-x 7 root root 4096 Dec 31 1969 .
drwxr-xr-x 5 root root 4096 Dec 12 15:04 ..
drwxr-xr-x 4 root root 4096 May 28 2023 boot_rm
drwxr-xr-x 6 root root 4096 May 28 2023 burg
drwxr-xr-x 9 root root 4096 Aug 26 15:53 EFI
drwxr-xr-x 2 root root 4096 Jun 28 12:59 grub
-rwxr-xr-x 1 root root 38144688 May 28 2023 initramfs-6.1-x86_64-fallback.img
-rwxr-xr-x 1 root root 10374306 May 28 2023 initramfs-6.1-x86_64.img
-rwxr-xr-x 1 root root 71219028 Jun 20 18:26 initramfs-linux-fallback.img
-rwxr-xr-x 1 root root 16871632 Jul 18 15:59 initramfs-linux.img
-rwxr-xr-x 1 root root 67750770 Jun 26 20:32 initramfs-linux-lts-fallback.img
-rwxr-xr-x 1 root root 15599153 Jun 26 20:32 initramfs-linux-lts.img
-rwxr-xr-x 1 root root 7315456 Jun 14 07:48 intel-ucode.img
-rwxr-xr-x 1 root root 21 May 24 2023 linux61-x86_64.kver
drwxr-xr-x 2 root root 4096 May 28 2023 'System Volume Information'
-rwxr-xr-x 1 root root 11270464 May 28 2023 vmlinuz-6.1-x86_64
-rwxr-xr-x 1 root root 12651904 Jul 18 15:52 vmlinuz-linux
-rwxr-xr-x 1 root root 11208928 Jun 26 20:31 vmlinuz-linux-ltsOffline
Yes, I think so. That "System Volume Information" thingie is a Windows folder so perhaps leave that alone but nothing else there is needed.
I'm using GRUB atm and here's my ESP contents:
~$ find /mnt
/mnt
/mnt/EFI
/mnt/EFI/arch
/mnt/EFI/arch/grubx64.efi
~$ df -h /mnt
Filesystem Size Used Avail Use% Mounted on
/dev/nvme0n1p1 511M 292K 511M 1% /mnt
~$Pretty vacant, as you can see. EDIT: damn, I'll be singing that song for the rest of the evening now...
Last edited by Head_on_a_Stick (2023-12-12 21:18:30)
Jin, Jîyan, Azadî
Offline
I now have this:
[demo@archlinux efi]$ df -h
Filesystem Size Used Avail Use% Mounted on
dev 7.6G 0 7.6G 0% /dev
run 7.7G 1.6M 7.7G 1% /run
efivarfs 192K 47K 141K 25% /sys/firmware/efi/efivars
/dev/nvme0n1p9 36G 28G 6.0G 83% /
tmpfs 7.7G 0 7.7G 0% /dev/shm
tmpfs 7.7G 4.0K 7.7G 1% /tmp
/dev/nvme0n1p2 499M 53M 446M 11% /boot/efi
tmpfs 1.6G 72K 1.6G 1% /run/user/1000[demo@archlinux efi]$ ls -la
total 16
drwxr-xr-x 4 root root 4096 Dec 31 1969 .
drwxr-xr-x 5 root root 4096 Dec 12 15:04 ..
drwxr-xr-x 9 root root 4096 Aug 26 15:53 EFI
drwxr-xr-x 2 root root 4096 May 28 2023 'System Volume Information'All is working well.
Thanks everyone for all the help.
Offline