You are not logged in.
Pages: 1
I am trying to increase the size of my partition, but due to the horrendous partitioning done on my disk, simply resizing it won't work. I have already moved over my entire / to the new partition, all I believe needs to be done is to make my system use the new partition as root, how can I do that?
I also used archinstall to install Arch, not sure if it's against the rules because it wasn't mentioned in the list.
Offline
If you've moved everything correctly, then all you need to do is mount the new root as / in fstab or whatever permanent mount mechanism you use and point your bootloader at the new root partition, depending on your bootloader and general boot setup.
I'd also check if you've actually copied everything correctly. How did you "move" your data?
Offline
"I'd also check if you've actually copied everything correctly. How did you "move" your data?"
I meant to say copy, I mounted both partitions and ran "sudo rsync -axHAX --numeric-ids ---info=progress2 /mnt/old-place /mnt/new-place/" where old-place is the original partition. I checked the partition and it looks pretty identical in my file manager.
I'll go and do what you said to point Arch to it, thank you
Last edited by ArchMisspelled (Yesterday 12:07:27)
Offline
Well, there's progress. When I boot into the new Arch Linux entry in my grub, it panics and gives "VFS: Unable to mount root fs on unknown-block(0,0)". How can I fix that?
Offline
Some details
The fstab on the old partition (which works and I am typing this on it) marks root on its own partition
The fstab on the new partition (which doesn't work) marks root on itself too, which is where I want to boot into
I for some reason do not have a grub directory in /boot, it is in /efi/grub instead
Offline
Please post the output of
lsblk -fyour old and new fstab and the grub.cfg
Offline
lsblk -f[archie@archie-machine ~]$ lsblk -f
NAME FSTYPE FSVER LABEL UUID FSAVAIL FSUSE% MOUNTPOINTS
zram0 swap 1 zram0 49e3a041-51d1-4130-819d-237fa3791abe [SWAP]
nvme0n1
├─nvme0n1p1 vfat FAT32 C284-EBCD
├─nvme0n1p2 ext4 1.0 11383ee4-5546-4f21-9a5c-0f57a741f7d0
├─nvme0n1p3 ext4 1.0 34e03703-08aa-4e8a-9e24-df76cff7d2e7
├─nvme0n1p4 vfat FAT32 BAFE-09EF
├─nvme0n1p5 ext4 1.0 bb492f3a-d22a-41df-aa35-592f25c26981 29.3G 74% /
├─nvme0n1p6 vfat FAT32 18E8-DC21 964.6M 3% /boot
├─nvme0n1p7 vfat FAT32 EE02-EF52
└─nvme0n1p8 vfat FAT32 18E8-40DD 860.7M 14% /eficontents of old fstab (Works and I am writing this on it)
[archie@archie-machine ~]$ cat /etc/fstab
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/nvme0n1p5
UUID=bb492f3a-d22a-41df-aa35-592f25c26981 / ext4 rw,relatime 0 1
# /dev/nvme0n1p6
UUID=18E8-DC21 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/nvme0n1p8
UUID=18E8-40DD /efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
/swapfile none swap defaults 0 0contents of new fstab (Doesn't work but I want to switch to it)
[archie@archie-machine temporary_mount_point]$ cat etc/fstab
# Static information about the filesystems.
# See fstab(5) for details.
# <file system> <dir> <type> <options> <dump> <pass>
# /dev/nvme0n1p2
UUID=11383ee4-5546-4f21-9a5c-0f57a741f7d0 / ext4 rw,relatime 0 1
# /dev/nvme0n1p6
UUID=18E8-DC21 /boot vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
# /dev/nvme0n1p8
UUID=18E8-40DD /efi vfat rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=ascii,shortname=mixed,utf8,errors=remount-ro 0 2
/swapfile none swap defaults 0 0grub.cfg contents (of old partition which works and I am on it right now)
[archie@archie-machine ~]$ cat /efi/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 [ "${env_block}" ] ; then
set env_block="(${root})${env_block}"
export env_block
load_env -f "${env_block}"
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
if [ "${env_block}" ] ; then
save_env -f "${env_block}" next_entry
else
save_env next_entry
fi
set boot_once=true
else
set default="0"
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}"
if [ "${env_block}" ] ; then
save_env -f "${env_block}" saved_entry
else
save_env saved_entry
fi
fi
}
function load_video {
if [ x$grub_platform = xefi ]; then
insmod efi_gop
insmod efi_uga
elif [ 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 bb492f3a-d22a-41df-aa35-592f25c26981
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
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/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux-zen ...'
linux /vmlinuz-linux-zen root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
menuentry 'Arch Linux, with Linux linux-zen' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux-zen ...'
linux /vmlinuz-linux-zen root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/15_ostree ###
### END /etc/grub.d/15_ostree ###
### BEGIN /etc/grub.d/15_uki ###
if [ "$grub_platform" = "efi" ]; then
uki
fi
### END /etc/grub.d/15_uki ###
### 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 ###
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2)' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux-zen root=/dev/nvme0n1p2
}
submenu 'Advanced options for Arch Linux (rolling) (on /dev/nvme0n1p2)' $menuentry_id_option 'osprober-gnulinux-advanced-11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-linux-zen--11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux-zen root=/dev/nvme0n1p2
}
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-linux--11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux root=/dev/nvme0n1p2
}
}
### END /etc/grub.d/30_os-prober ###
### 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 ###I am unable to provide grub.cfg of the new partition as it does not have a grub directory in /efi.
nvme0n1p2 is the partition I wish to switch to, and the one being referred to as "new" here.
Offline
I am unable to provide grub.cfg of the new partition as it does not have a grub directory in /efi.
You're not supposed to have multiple grub.cfg's - there's the one where you installed grub.
The one you posted has what seems to be a useful entry "Arch Linux (rolling) (on /dev/nvme0n1p2)" - is that what you're currently trying and failing to boot?
Offline
The one you posted has what seems to be a useful entry "Arch Linux (rolling) (on /dev/nvme0n1p2)" - is that what you're currently trying and failing to boot?
Yes
Offline
With that label and from that ESP? (You're not switching between boot partitions in the UEFI between the successful boot of 'Arch Linux, with Linux linux-zen' and failing 'Arch Linux (rolling) (on /dev/nvme0n1p2)'?
Edit the boot label to prove to yourself that this is the relevant file (add a random marker like "POC")
You *might* be lacking "insmod gzio" but both entries are booting from 18E8-DC21 (same kernel and initramfs)
Offline
(You're not switching between boot partitions in the UEFI between the successful boot of 'Arch Linux, with Linux linux-zen' and failing 'Arch Linux (rolling) (on /dev/nvme0n1p2)?
That's what I am trying to do, yes. If it's a bad idea, tell me and I will try to adjust.
Edit the boot label to prove to yourself that this is the relevant file (add a random marker like "POC")
I don't know how to do that, I went into grub.cfg (I shouldn't edit it) and added a "POC" suffix to the "Arch Linux (rolling) (on /dev/nvme0n1p2)" entry in the menu and it did show up when I rebooted.
You *might* be lacking "insmod gzio" but both entries are booting from 18E8-DC21 (same kernel and initramfs)
I probably am, based on this output.
[archie@archie-machine ~]$ insmod gzio
insmod: ERROR: could not load module gzio: No such file or directoryOffline
That's what I am trying to do, yes.
Using the ESP you already have? That's a reasonable approach.
it did show up when I rebooted.it did show up when I rebooted.
Good, means that's the relevant grub.cfg
insmod: ERROR: could not load module gzio: No such file or directory
No, that would go into the grub.cfg - check the section for your old installation.
Offline
Here's the new grub.cfg, I added
insmod gzioto the start of the broken "Arch Linux (Rolling)" entry. Still panics with the same error unfortunately.
[archie@archie-machine ~]$ sudo cat /efi/grub/grub.cfg
[sudo] password for archie:
#
# 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 [ "${env_block}" ] ; then
set env_block="(${root})${env_block}"
export env_block
load_env -f "${env_block}"
fi
if [ "${next_entry}" ] ; then
set default="${next_entry}"
set next_entry=
if [ "${env_block}" ] ; then
save_env -f "${env_block}" next_entry
else
save_env next_entry
fi
set boot_once=true
else
set default="0"
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}"
if [ "${env_block}" ] ; then
save_env -f "${env_block}" saved_entry
else
save_env saved_entry
fi
fi
}
function load_video {
if [ x$grub_platform = xefi ]; then
insmod efi_gop
insmod efi_uga
elif [ 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 bb492f3a-d22a-41df-aa35-592f25c26981
font="/usr/share/grub/unicode.pf2"
fi
if loadfont $font ; then
set gfxmode=auto
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/10_linux ###
menuentry 'Arch Linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux-zen ...'
linux /vmlinuz-linux-zen root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
submenu 'Advanced options for Arch Linux' $menuentry_id_option 'gnulinux-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
menuentry 'Arch Linux, with Linux linux-zen' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-zen-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux-zen ...'
linux /vmlinuz-linux-zen root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
menuentry 'Arch Linux, with Linux linux' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-linux-advanced-bb492f3a-d22a-41df-aa35-592f25c26981' {
load_video
set gfxpayload=keep
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
echo 'Loading Linux linux ...'
linux /vmlinuz-linux root=/dev/nvme0n1p5 rw loglevel=3 quiet
}
}
### END /etc/grub.d/10_linux ###
### BEGIN /etc/grub.d/15_ostree ###
### END /etc/grub.d/15_ostree ###
### BEGIN /etc/grub.d/15_uki ###
if [ "$grub_platform" = "efi" ]; then
uki
fi
### END /etc/grub.d/15_uki ###
### 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 ###
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2) POC' --class arch --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-simple-11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod gzio
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux-zen root=/dev/nvme0n1p2
}
submenu 'Advanced options for Arch Linux (rolling) (on /dev/nvme0n1p2)' $menuentry_id_option 'osprober-gnulinux-advanced-11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-linux-zen--11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux-zen root=/dev/nvme0n1p2
}
menuentry 'Arch Linux (rolling) (on /dev/nvme0n1p2)' --class gnu-linux --class gnu --class os $menuentry_id_option 'osprober-gnulinux-/vmlinuz-linux--11383ee4-5546-4f21-9a5c-0f57a741f7d0' {
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=root 18E8-DC21
linux /vmlinuz-linux root=/dev/nvme0n1p2
}
}
### END /etc/grub.d/30_os-prober ###
### 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 ###Offline
Mounting nvme0n1p2 otherwise is no problem? No errors?
https://wiki.archlinux.org/title/Genera … l_messages and link a video/screenshot of the error.
Offline
Video: https://youtu.be/q2LIsLKjmOo
Before that, I edited the GRUB_CMDLINE_LINUX_DEFAULT in /etc/default/grub to be
GRUB_CMDLINE_LINUX_DEFAULT="loglevel=8 debug earlyprintk=vga,keep"then ran
sudo grub-mkconfigAlso so far, I'd like to thank you for persisting this long.
Offline
If you don't have a tripod, you can makeshift one out of two books: -\_
But you actually get a kernel panic w/ a QR-code, it'll explain what's going wrong.
Offline
Oh, you're right. I thought the QR-Code would bring me to some generic page that's like "oh since your root fs couldn't mount, it means it didn't mount."
The full page: https://pastebin.com/1u7wCzgH
What I *believe* happened is that it's trying to access "/dev/nvme0n1p2" instead of its UUID, but it's probably not that.
Offline
[ 0.929698] Console: switching to colour frame buffer device 240x67
[ 0.929963] VFS: Cannot open root device "/dev/nvme0n1p2" or unknown-block(0,0): error -6
[ 0.929972] Please append a correct "root=" boot option; here are the available partitions:
[ 0.929980] List of all bdev filesystems:
[ 0.929981] ext3
[ 0.929983] ext2
[ 0.929984] ext4
[ 0.929985] fuseblk
[ 0.929985] btrfsThe nvme isn't detected at all - if you were not using the same initramfs I'd say you don't have the nvme modules in the initramfs…
ls -l /boot/initramfs*
for name in /boot/initramfs*; do echo $name; lsinitcpio $name | grep nvme; doneI'll point out that you're booting grub from nvme0n1p8 but are booting nvme0n1p2 from nvme0n1p6
Offline
ls -l /boot/initramfs*
for name in /boot/initramfs*; do echo $name; lsinitcpio $name | grep nvme; done[archie@archie-machine ~]$ ls /boot
vmlinuz-linux vmlinuz-linux-zenUh..... my /boot is missing initramfs, it only contains my Linux kernels, I believe.
I'll point out that you're booting grub from nvme0n1p8 but are booting nvme0n1p2 from nvme0n1p6
How would I fix that?
Offline
"--set=root 18E8-40DD" (but leave the working config alone)
ls -lR /efiOffline
After editing the flag you gave me for the broken "Arch Linux (Rolling)", I get this error when trying to boot it:
error: fs/fshelp.c:find_file:260:file `/vmlinuz-linux-zen` not found.
Press any key to continue...Output of the command you gave me:
[archie@archie-machine ~]$ ls -lR /efi
/efi:
total 12
drwxr-xr-x 4 root root 4096 May 28 13:17 EFI
drwxr-xr-x 6 root root 4096 Jun 12 14:10 grub
drwxr-xr-x 3 root root 4096 Jun 13 16:51 loader
/efi/EFI:
total 8
drwxr-xr-x 2 root root 4096 May 28 13:17 BOOT
drwxr-xr-x 2 root root 4096 Jun 13 15:52 Linux
/efi/EFI/BOOT:
total 156
-rwxr-xr-x 1 root root 159744 May 28 13:17 BOOTX64.EFI
/efi/EFI/Linux:
total 124860
-rwxr-xr-x 1 root root 63023104 May 28 08:50 arch-linux.efi
-rwxr-xr-x 1 root root 64830464 May 28 08:50 arch-linux-zen.efi
/efi/grub:
total 48
drwxr-xr-x 2 root root 4096 May 28 13:17 fonts
-rwxr-xr-x 1 root root 5924 Jun 13 16:38 grub.cfg
-rwxr-xr-x 1 root root 1024 May 28 13:17 grubenv
drwxr-xr-x 2 root root 4096 May 28 13:17 locale
drwxr-xr-x 3 root root 4096 May 28 13:17 themes
drwxr-xr-x 2 root root 24576 May 28 13:17 x86_64-efi
/efi/grub/fonts:
total 2356
-rwxr-xr-x 1 root root 2412513 May 28 13:17 unicode.pf2
/efi/grub/locale:
total 6296
-rwxr-xr-x 1 root root 126505 May 28 13:17 ast.mo
-rwxr-xr-x 1 root root 127503 May 28 13:17 ca.mo
-rwxr-xr-x 1 root root 118755 May 28 13:17 da.mo
-rwxr-xr-x 1 root root 178176 May 28 13:17 de_CH.mo
-rwxr-xr-x 1 root root 268377 May 28 13:17 de@hebrew.mo
-rwxr-xr-x 1 root root 178212 May 28 13:17 de.mo
-rwxr-xr-x 1 root root 221969 May 28 13:17 en@arabic.mo
-rwxr-xr-x 1 root root 209457 May 28 13:17 en@cyrillic.mo
-rwxr-xr-x 1 root root 209454 May 28 13:17 en@greek.mo
-rwxr-xr-x 1 root root 240461 May 28 13:17 en@hebrew.mo
-rwxr-xr-x 1 root root 185385 May 28 13:17 en@piglatin.mo
-rwxr-xr-x 1 root root 163109 May 28 13:17 en@quot.mo
-rwxr-xr-x 1 root root 170529 May 28 13:17 eo.mo
-rwxr-xr-x 1 root root 129674 May 28 13:17 es.mo
-rwxr-xr-x 1 root root 131677 May 28 13:17 fi.mo
-rwxr-xr-x 1 root root 185939 May 28 13:17 fr.mo
-rwxr-xr-x 1 root root 102501 May 28 13:17 gl.mo
-rwxr-xr-x 1 root root 139929 May 28 13:17 he.mo
-rwxr-xr-x 1 root root 129465 May 28 13:17 hr.mo
-rwxr-xr-x 1 root root 137132 May 28 13:17 hu.mo
-rwxr-xr-x 1 root root 132071 May 28 13:17 id.mo
-rwxr-xr-x 1 root root 116652 May 28 13:17 it.mo
-rwxr-xr-x 1 root root 44761 May 28 13:17 ja.mo
-rwxr-xr-x 1 root root 161822 May 28 13:17 ka.mo
-rwxr-xr-x 1 root root 184362 May 28 13:17 ko.mo
-rwxr-xr-x 1 root root 7733 May 28 13:17 lg.mo
-rwxr-xr-x 1 root root 100461 May 28 13:17 lt.mo
-rwxr-xr-x 1 root root 127342 May 28 13:17 nb.mo
-rwxr-xr-x 1 root root 131836 May 28 13:17 nl.mo
-rwxr-xr-x 1 root root 61236 May 28 13:17 pa.mo
-rwxr-xr-x 1 root root 147969 May 28 13:17 pl.mo
-rwxr-xr-x 1 root root 85920 May 28 13:17 pt_BR.mo
-rwxr-xr-x 1 root root 174469 May 28 13:17 pt.mo
-rwxr-xr-x 1 root root 186993 May 28 13:17 ro.mo
-rwxr-xr-x 1 root root 190635 May 28 13:17 ru.mo
-rwxr-xr-x 1 root root 93528 May 28 13:17 sl.mo
-rwxr-xr-x 1 root root 224191 May 28 13:17 sr.mo
-rwxr-xr-x 1 root root 170244 May 28 13:17 sv.mo
-rwxr-xr-x 1 root root 98209 May 28 13:17 tr.mo
-rwxr-xr-x 1 root root 234387 May 28 13:17 uk.mo
-rwxr-xr-x 1 root root 161149 May 28 13:17 vi.mo
-rwxr-xr-x 1 root root 137770 May 28 13:17 zh_CN.mo
-rwxr-xr-x 1 root root 29950 May 28 13:17 zh_TW.mo
/efi/grub/themes:
total 4
drwxr-xr-x 2 root root 4096 May 28 13:17 starfield
/efi/grub/themes/starfield:
total 2868
-rwxr-xr-x 1 root root 836 May 28 13:17 blob_w.png
-rwxr-xr-x 1 root root 178 May 28 13:17 boot_menu_c.png
-rwxr-xr-x 1 root root 193 May 28 13:17 boot_menu_e.png
-rwxr-xr-x 1 root root 193 May 28 13:17 boot_menu_ne.png
-rwxr-xr-x 1 root root 103 May 28 13:17 boot_menu_n.png
-rwxr-xr-x 1 root root 184 May 28 13:17 boot_menu_nw.png
-rwxr-xr-x 1 root root 198 May 28 13:17 boot_menu_se.png
-rwxr-xr-x 1 root root 102 May 28 13:17 boot_menu_s.png
-rwxr-xr-x 1 root root 196 May 28 13:17 boot_menu_sw.png
-rwxr-xr-x 1 root root 96 May 28 13:17 boot_menu_w.png
-rwxr-xr-x 1 root root 19890 May 28 13:17 COPYING.CC-BY-SA-3.0
-rwxr-xr-x 1 root root 153204 May 28 13:17 dejavu_10.pf2
-rwxr-xr-x 1 root root 169023 May 28 13:17 dejavu_12.pf2
-rwxr-xr-x 1 root root 185562 May 28 13:17 dejavu_14.pf2
-rwxr-xr-x 1 root root 204001 May 28 13:17 dejavu_16.pf2
-rwxr-xr-x 1 root root 193153 May 28 13:17 dejavu_bold_14.pf2
-rwxr-xr-x 1 root root 1191 May 28 13:17 README
-rwxr-xr-x 1 root root 197 May 28 13:17 slider_c.png
-rwxr-xr-x 1 root root 265 May 28 13:17 slider_n.png
-rwxr-xr-x 1 root root 269 May 28 13:17 slider_s.png
-rwxr-xr-x 1 root root 1897028 May 28 13:17 starfield.png
-rwxr-xr-x 1 root root 178 May 28 13:17 terminal_box_c.png
-rwxr-xr-x 1 root root 94 May 28 13:17 terminal_box_e.png
-rwxr-xr-x 1 root root 128 May 28 13:17 terminal_box_ne.png
-rwxr-xr-x 1 root root 194 May 28 13:17 terminal_box_n.png
-rwxr-xr-x 1 root root 210 May 28 13:17 terminal_box_nw.png
-rwxr-xr-x 1 root root 126 May 28 13:17 terminal_box_se.png
-rwxr-xr-x 1 root root 101 May 28 13:17 terminal_box_s.png
-rwxr-xr-x 1 root root 123 May 28 13:17 terminal_box_sw.png
-rwxr-xr-x 1 root root 97 May 28 13:17 terminal_box_w.png
-rwxr-xr-x 1 root root 2249 May 28 13:17 theme.txt
/efi/grub/x86_64-efi:
total 4280
-rwxr-xr-x 1 root root 16920 May 28 13:17 acpi.mod
-rwxr-xr-x 1 root root 1824 May 28 13:17 adler32.mod
-rwxr-xr-x 1 root root 8536 May 28 13:17 affs.mod
-rwxr-xr-x 1 root root 9232 May 28 13:17 afs.mod
-rwxr-xr-x 1 root root 2040 May 28 13:17 afsplitter.mod
-rwxr-xr-x 1 root root 27592 May 28 13:17 ahci.mod
-rwxr-xr-x 1 root root 704 May 28 13:17 all_video.mod
-rwxr-xr-x 1 root root 1368 May 28 13:17 aout.mod
-rwxr-xr-x 1 root root 5256 May 28 13:17 appleldr.mod
-rwxr-xr-x 1 root root 5208 May 28 13:17 archelp.mod
-rwxr-xr-x 1 root root 1392 May 28 13:17 argon2.mod
-rwxr-xr-x 1 root root 3776 May 28 13:17 argon2_test.mod
-rwxr-xr-x 1 root root 40072 May 28 13:17 asn1.mod
-rwxr-xr-x 1 root root 54464 May 28 13:17 asn1_test.mod
-rwxr-xr-x 1 root root 10352 May 28 13:17 ata.mod
-rwxr-xr-x 1 root root 6680 May 28 13:17 at_keyboard.mod
-rwxr-xr-x 1 root root 2432 May 28 13:17 backtrace.mod
-rwxr-xr-x 1 root root 10488 May 28 13:17 bfs.mod
-rwxr-xr-x 1 root root 3688 May 28 13:17 bitmap.mod
-rwxr-xr-x 1 root root 6288 May 28 13:17 bitmap_scale.mod
-rwxr-xr-x 1 root root 5232 May 28 13:17 bli.mod
-rwxr-xr-x 1 root root 3232 May 28 13:17 blocklist.mod
-rwxr-xr-x 1 root root 25616 May 28 13:17 blsuki.mod
-rwxr-xr-x 1 root root 4000 May 28 13:17 boot.mod
-rwxr-xr-x 1 root root 1936 May 28 13:17 boottime.mod
-rwxr-xr-x 1 root root 54696 May 28 13:17 bsd.mod
-rwxr-xr-x 1 root root 3184 May 28 13:17 bswap_test.mod
-rwxr-xr-x 1 root root 32536 May 28 13:17 btrfs.mod
-rwxr-xr-x 1 root root 2808 May 28 13:17 bufio.mod
-rwxr-xr-x 1 root root 2128 May 28 13:17 cacheinfo.mod
-rwxr-xr-x 1 root root 4496 May 28 13:17 cat.mod
-rwxr-xr-x 1 root root 6264 May 28 13:17 cbfs.mod
-rwxr-xr-x 1 root root 5576 May 28 13:17 cbls.mod
-rwxr-xr-x 1 root root 4064 May 28 13:17 cbmemc.mod
-rwxr-xr-x 1 root root 1528 May 28 13:17 cbtable.mod
-rwxr-xr-x 1 root root 4384 May 28 13:17 cbtime.mod
-rwxr-xr-x 1 root root 9288 May 28 13:17 chain.mod
-rwxr-xr-x 1 root root 1752 May 28 13:17 cmosdump.mod
-rwxr-xr-x 1 root root 3240 May 28 13:17 cmostest.mod
-rwxr-xr-x 1 root root 3400 May 28 13:17 cmp.mod
-rwxr-xr-x 1 root root 6720 May 28 13:17 cmp_test.mod
-rwxr-xr-x 1 root root 3985 May 28 13:17 command.lst
-rwxr-xr-x 1 root root 3640 May 28 13:17 configfile.mod
-rwxr-xr-x 1 root root 159744 May 28 13:17 core.efi
-rwxr-xr-x 1 root root 4984 May 28 13:17 cpio_be.mod
-rwxr-xr-x 1 root root 4968 May 28 13:17 cpio.mod
-rwxr-xr-x 1 root root 2584 May 28 13:17 cpuid.mod
-rwxr-xr-x 1 root root 2008 May 28 13:17 crc64.mod
-rwxr-xr-x 1 root root 9760 May 28 13:17 crypto_cipher_mode_test.mod
-rwxr-xr-x 1 root root 31272 May 28 13:17 cryptodisk.mod
-rwxr-xr-x 1 root root 1511 May 28 13:17 crypto.lst
-rwxr-xr-x 1 root root 17016 May 28 13:17 crypto.mod
-rwxr-xr-x 1 root root 4360 May 28 13:17 cs5536.mod
-rwxr-xr-x 1 root root 2632 May 28 13:17 ctz_test.mod
-rwxr-xr-x 1 root root 2920 May 28 13:17 datehook.mod
-rwxr-xr-x 1 root root 3256 May 28 13:17 date.mod
-rwxr-xr-x 1 root root 3152 May 28 13:17 datetime.mod
-rwxr-xr-x 1 root root 17112 May 28 13:17 diskfilter.mod
-rwxr-xr-x 1 root root 3384 May 28 13:17 disk.mod
-rwxr-xr-x 1 root root 1256 May 28 13:17 div.mod
-rwxr-xr-x 1 root root 8144 May 28 13:17 div_test.mod
-rwxr-xr-x 1 root root 3008 May 28 13:17 dm_nv.mod
-rwxr-xr-x 1 root root 3800 May 28 13:17 dsa_sexp_test.mod
-rwxr-xr-x 1 root root 2920 May 28 13:17 echo.mod
-rwxr-xr-x 1 root root 2864 May 28 13:17 efifwsetup.mod
-rwxr-xr-x 1 root root 13848 May 28 13:17 efi_gop.mod
-rwxr-xr-x 1 root root 7160 May 28 13:17 efinet.mod
-rwxr-xr-x 1 root root 4320 May 28 13:17 efitextmode.mod
-rwxr-xr-x 1 root root 6888 May 28 13:17 efi_uga.mod
-rwxr-xr-x 1 root root 30680 May 28 13:17 ehci.mod
-rwxr-xr-x 1 root root 11624 May 28 13:17 elf.mod
-rwxr-xr-x 1 root root 10504 May 28 13:17 erofs.mod
-rwxr-xr-x 1 root root 2096 May 28 13:17 eval.mod
-rwxr-xr-x 1 root root 9024 May 28 13:17 exfat.mod
-rwxr-xr-x 1 root root 2168 May 28 13:17 exfctest.mod
-rwxr-xr-x 1 root root 9584 May 28 13:17 ext2.mod
-rwxr-xr-x 1 root root 8040 May 28 13:17 extcmd.mod
-rwxr-xr-x 1 root root 10944 May 28 13:17 f2fs.mod
-rwxr-xr-x 1 root root 8952 May 28 13:17 fat.mod
-rwxr-xr-x 1 root root 28408 May 28 13:17 file.mod
-rwxr-xr-x 1 root root 3016 May 28 13:17 fixvideo.mod
-rwxr-xr-x 1 root root 20704 May 28 13:17 font.mod
-rwxr-xr-x 1 root root 5176 May 28 13:17 fshelp.mod
-rwxr-xr-x 1 root root 225 May 28 13:17 fs.lst
-rwxr-xr-x 1 root root 46400 May 28 13:17 functional_test.mod
-rwxr-xr-x 1 root root 2392 May 28 13:17 gcry_arcfour.mod
-rwxr-xr-x 1 root root 25520 May 28 13:17 gcry_aria.mod
-rwxr-xr-x 1 root root 24624 May 28 13:17 gcry_blake2.mod
-rwxr-xr-x 1 root root 18872 May 28 13:17 gcry_blowfish.mod
-rwxr-xr-x 1 root root 31960 May 28 13:17 gcry_camellia.mod
-rwxr-xr-x 1 root root 24568 May 28 13:17 gcry_cast5.mod
-rwxr-xr-x 1 root root 12008 May 28 13:17 gcry_crc.mod
-rwxr-xr-x 1 root root 18704 May 28 13:17 gcry_des.mod
-rwxr-xr-x 1 root root 5360 May 28 13:17 gcry_dsa.mod
-rwxr-xr-x 1 root root 41240 May 28 13:17 gcry_gost28147.mod
-rwxr-xr-x 1 root root 5152 May 28 13:17 gcry_gostr3411_94.mod
-rwxr-xr-x 1 root root 2248 May 28 13:17 gcry_hwfeatures.mod
-rwxr-xr-x 1 root root 3608 May 28 13:17 gcry_idea.mod
-rwxr-xr-x 1 root root 6856 May 28 13:17 gcry_kdf.mod
-rwxr-xr-x 1 root root 15808 May 28 13:17 gcry_keccak.mod
-rwxr-xr-x 1 root root 4096 May 28 13:17 gcry_md4.mod
-rwxr-xr-x 1 root root 4568 May 28 13:17 gcry_md5.mod
-rwxr-xr-x 1 root root 3592 May 28 13:17 gcry_rfc2268.mod
-rwxr-xr-x 1 root root 15928 May 28 13:17 gcry_rijndael.mod
-rwxr-xr-x 1 root root 8488 May 28 13:17 gcry_rmd160.mod
-rwxr-xr-x 1 root root 6080 May 28 13:17 gcry_rsa.mod
-rwxr-xr-x 1 root root 5568 May 28 13:17 gcry_salsa20.mod
-rwxr-xr-x 1 root root 15656 May 28 13:17 gcry_seed.mod
-rwxr-xr-x 1 root root 22920 May 28 13:17 gcry_serpent.mod
-rwxr-xr-x 1 root root 8056 May 28 13:17 gcry_sha1.mod
-rwxr-xr-x 1 root root 28648 May 28 13:17 gcry_sha256.mod
-rwxr-xr-x 1 root root 58968 May 28 13:17 gcry_sha512.mod
-rwxr-xr-x 1 root root 12520 May 28 13:17 gcry_sm3.mod
-rwxr-xr-x 1 root root 12248 May 28 13:17 gcry_sm4.mod
-rwxr-xr-x 1 root root 22360 May 28 13:17 gcry_stribog.mod
-rwxr-xr-x 1 root root 16176 May 28 13:17 gcry_tiger.mod
-rwxr-xr-x 1 root root 21304 May 28 13:17 gcry_twofish.mod
-rwxr-xr-x 1 root root 23016 May 28 13:17 gcry_whirlpool.mod
-rwxr-xr-x 1 root root 9376 May 28 13:17 geli.mod
-rwxr-xr-x 1 root root 9200 May 28 13:17 gettext.mod
-rwxr-xr-x 1 root root 61976 May 28 13:17 gfxmenu.mod
-rwxr-xr-x 1 root root 4480 May 28 13:17 gfxterm_background.mod
-rwxr-xr-x 1 root root 15120 May 28 13:17 gfxterm.mod
-rwxr-xr-x 1 root root 5856 May 28 13:17 gptsync.mod
-rwxr-xr-x 1 root root 159744 May 28 13:17 grub.efi
-rwxr-xr-x 1 root root 14688 May 28 13:17 gzio.mod
-rwxr-xr-x 1 root root 7872 May 28 13:17 halt.mod
-rwxr-xr-x 1 root root 9264 May 28 13:17 hashsum.mod
-rwxr-xr-x 1 root root 10624 May 28 13:17 hdparm.mod
-rwxr-xr-x 1 root root 1768 May 28 13:17 hello.mod
-rwxr-xr-x 1 root root 3992 May 28 13:17 help.mod
-rwxr-xr-x 1 root root 4864 May 28 13:17 hexdump.mod
-rwxr-xr-x 1 root root 10320 May 28 13:17 hfs.mod
-rwxr-xr-x 1 root root 4448 May 28 13:17 hfspluscomp.mod
-rwxr-xr-x 1 root root 12328 May 28 13:17 hfsplus.mod
-rwxr-xr-x 1 root root 9680 May 28 13:17 http.mod
-rwxr-xr-x 1 root root 4624 May 28 13:17 iorw.mod
-rwxr-xr-x 1 root root 14632 May 28 13:17 iso9660.mod
-rwxr-xr-x 1 root root 10552 May 28 13:17 jfs.mod
-rwxr-xr-x 1 root root 12824 May 28 13:17 jpeg.mod
-rwxr-xr-x 1 root root 6320 May 28 13:17 json.mod
-rwxr-xr-x 1 root root 6936 May 28 13:17 keylayouts.mod
-rwxr-xr-x 1 root root 2952 May 28 13:17 key_protector.mod
-rwxr-xr-x 1 root root 3232 May 28 13:17 keystatus.mod
-rwxr-xr-x 1 root root 8232 May 28 13:17 ldm.mod
-rwxr-xr-x 1 root root 46328 May 28 13:17 legacycfg.mod
-rwxr-xr-x 1 root root 15816 May 28 13:17 legacy_password_test.mod
-rwxr-xr-x 1 root root 9432 May 28 13:17 linux16.mod
-rwxr-xr-x 1 root root 31352 May 28 13:17 linux.mod
-rwxr-xr-x 1 root root 4928 May 28 13:17 loadbios.mod
-rwxr-xr-x 1 root root 9992 May 28 13:17 loadenv.mod
-rwxr-xr-x 1 root root 5928 May 28 13:17 loopback.mod
-rwxr-xr-x 1 root root 7056 May 28 13:17 lsacpi.mod
-rwxr-xr-x 1 root root 3584 May 28 13:17 lsefimmap.mod
-rwxr-xr-x 1 root root 5064 May 28 13:17 lsefi.mod
-rwxr-xr-x 1 root root 4640 May 28 13:17 lsefisystab.mod
-rwxr-xr-x 1 root root 2824 May 28 13:17 lsmmap.mod
-rwxr-xr-x 1 root root 6504 May 28 13:17 ls.mod
-rwxr-xr-x 1 root root 7144 May 28 13:17 lspci.mod
-rwxr-xr-x 1 root root 3624 May 28 13:17 lssal.mod
-rwxr-xr-x 1 root root 23872 May 28 13:17 luks2.mod
-rwxr-xr-x 1 root root 6488 May 28 13:17 luks.mod
-rwxr-xr-x 1 root root 12488 May 28 13:17 lvm.mod
-rwxr-xr-x 1 root root 6936 May 28 13:17 lzopio.mod
-rwxr-xr-x 1 root root 5544 May 28 13:17 macbless.mod
-rwxr-xr-x 1 root root 13248 May 28 13:17 macho.mod
-rwxr-xr-x 1 root root 2904 May 28 13:17 mdraid09_be.mod
-rwxr-xr-x 1 root root 2912 May 28 13:17 mdraid09.mod
-rwxr-xr-x 1 root root 4040 May 28 13:17 mdraid1x.mod
-rwxr-xr-x 1 root root 3640 May 28 13:17 memdisk.mod
-rwxr-xr-x 1 root root 4632 May 28 13:17 memrw.mod
-rwxr-xr-x 1 root root 6520 May 28 13:17 minicmd.mod
-rwxr-xr-x 1 root root 6720 May 28 13:17 minix2_be.mod
-rwxr-xr-x 1 root root 6632 May 28 13:17 minix2.mod
-rwxr-xr-x 1 root root 6808 May 28 13:17 minix3_be.mod
-rwxr-xr-x 1 root root 6728 May 28 13:17 minix3.mod
-rwxr-xr-x 1 root root 6616 May 28 13:17 minix_be.mod
-rwxr-xr-x 1 root root 6488 May 28 13:17 minix.mod
-rwxr-xr-x 1 root root 9920 May 28 13:17 mmap.mod
-rwxr-xr-x 1 root root 6278 May 28 13:17 moddep.lst
-rwxr-xr-x 1 root root 2642 May 28 13:17 modinfo.sh
-rwxr-xr-x 1 root root 3192 May 28 13:17 morse.mod
-rwxr-xr-x 1 root root 64880 May 28 13:17 mpi.mod
-rwxr-xr-x 1 root root 3944 May 28 13:17 msdospart.mod
-rwxr-xr-x 1 root root 2464 May 28 13:17 mul_test.mod
-rwxr-xr-x 1 root root 28496 May 28 13:17 multiboot2.mod
-rwxr-xr-x 1 root root 25608 May 28 13:17 multiboot.mod
-rwxr-xr-x 1 root root 7064 May 28 13:17 nativedisk.mod
-rwxr-xr-x 1 root root 92880 May 28 13:17 net.mod
-rwxr-xr-x 1 root root 5192 May 28 13:17 newc.mod
-rwxr-xr-x 1 root root 11160 May 28 13:17 nilfs2.mod
-rwxr-xr-x 1 root root 182832 May 28 13:17 normal.mod
-rwxr-xr-x 1 root root 6216 May 28 13:17 ntfscomp.mod
-rwxr-xr-x 1 root root 20200 May 28 13:17 ntfs.mod
-rwxr-xr-x 1 root root 4992 May 28 13:17 odc.mod
-rwxr-xr-x 1 root root 2160 May 28 13:17 offsetio.mod
-rwxr-xr-x 1 root root 18040 May 28 13:17 ohci.mod
-rwxr-xr-x 1 root root 2408 May 28 13:17 part_acorn.mod
-rwxr-xr-x 1 root root 2792 May 28 13:17 part_amiga.mod
-rwxr-xr-x 1 root root 3232 May 28 13:17 part_apple.mod
-rwxr-xr-x 1 root root 4696 May 28 13:17 part_bsd.mod
-rwxr-xr-x 1 root root 2848 May 28 13:17 part_dfly.mod
-rwxr-xr-x 1 root root 2416 May 28 13:17 part_dvh.mod
-rwxr-xr-x 1 root root 3376 May 28 13:17 part_gpt.mod
-rwxr-xr-x 1 root root 111 May 28 13:17 partmap.lst
-rwxr-xr-x 1 root root 3296 May 28 13:17 part_msdos.mod
-rwxr-xr-x 1 root root 2600 May 28 13:17 part_plan.mod
-rwxr-xr-x 1 root root 2432 May 28 13:17 part_sun.mod
-rwxr-xr-x 1 root root 2632 May 28 13:17 part_sunpc.mod
-rwxr-xr-x 1 root root 17 May 28 13:17 parttool.lst
-rwxr-xr-x 1 root root 7784 May 28 13:17 parttool.mod
-rwxr-xr-x 1 root root 3168 May 28 13:17 password.mod
-rwxr-xr-x 1 root root 5048 May 28 13:17 password_pbkdf2.mod
-rwxr-xr-x 1 root root 8768 May 28 13:17 pata.mod
-rwxr-xr-x 1 root root 2224 May 28 13:17 pbkdf2.mod
-rwxr-xr-x 1 root root 5432 May 28 13:17 pbkdf2_test.mod
-rwxr-xr-x 1 root root 3576 May 28 13:17 pcidump.mod
-rwxr-xr-x 1 root root 21728 May 28 13:17 pgp.mod
-rwxr-xr-x 1 root root 13120 May 28 13:17 plainmount.mod
-rwxr-xr-x 1 root root 4616 May 28 13:17 play.mod
-rwxr-xr-x 1 root root 12544 May 28 13:17 png.mod
-rwxr-xr-x 1 root root 2184 May 28 13:17 priority_queue.mod
-rwxr-xr-x 1 root root 5992 May 28 13:17 probe.mod
-rwxr-xr-x 1 root root 4016 May 28 13:17 procfs.mod
-rwxr-xr-x 1 root root 2976 May 28 13:17 progress.mod
-rwxr-xr-x 1 root root 56624 May 28 13:17 pubkey.mod
-rwxr-xr-x 1 root root 1912 May 28 13:17 raid5rec.mod
-rwxr-xr-x 1 root root 3232 May 28 13:17 raid6rec.mod
-rwxr-xr-x 1 root root 4000 May 28 13:17 random.mod
-rwxr-xr-x 1 root root 3144 May 28 13:17 rdmsr.mod
-rwxr-xr-x 1 root root 2968 May 28 13:17 read.mod
-rwxr-xr-x 1 root root 1528 May 28 13:17 reboot.mod
-rwxr-xr-x 1 root root 80240 May 28 13:17 regexp.mod
-rwxr-xr-x 1 root root 15336 May 28 13:17 reiserfs.mod
-rwxr-xr-x 1 root root 29056 May 28 13:17 relocator.mod
-rwxr-xr-x 1 root root 6264 May 28 13:17 romfs.mod
-rwxr-xr-x 1 root root 3584 May 28 13:17 rsa_sexp_test.mod
-rwxr-xr-x 1 root root 7872 May 28 13:17 scsi.mod
-rwxr-xr-x 1 root root 5888 May 28 13:17 search_fs_file.mod
-rwxr-xr-x 1 root root 5920 May 28 13:17 search_fs_uuid.mod
-rwxr-xr-x 1 root root 5872 May 28 13:17 search_label.mod
-rwxr-xr-x 1 root root 5864 May 28 13:17 search.mod
-rwxr-xr-x 1 root root 18832 May 28 13:17 serial.mod
-rwxr-xr-x 1 root root 904 May 28 13:17 setjmp.mod
-rwxr-xr-x 1 root root 2648 May 28 13:17 setjmp_test.mod
-rwxr-xr-x 1 root root 8472 May 28 13:17 setpci.mod
-rwxr-xr-x 1 root root 8200 May 28 13:17 sfs.mod
-rwxr-xr-x 1 root root 3200 May 28 13:17 shift_test.mod
-rwxr-xr-x 1 root root 8648 May 28 13:17 signature_test.mod
-rwxr-xr-x 1 root root 3368 May 28 13:17 sleep.mod
-rwxr-xr-x 1 root root 3344 May 28 13:17 sleep_test.mod
-rwxr-xr-x 1 root root 8776 May 28 13:17 smbios.mod
-rwxr-xr-x 1 root root 3048 May 28 13:17 spkmodem.mod
-rwxr-xr-x 1 root root 11552 May 28 13:17 squash4.mod
-rwxr-xr-x 1 root root 3168 May 28 13:17 strtoull_test.mod
-rwxr-xr-x 1 root root 32128 May 28 13:17 syslinuxcfg.mod
-rwxr-xr-x 1 root root 5496 May 28 13:17 tar.mod
-rwxr-xr-x 1 root root 162 May 28 13:17 terminal.lst
-rwxr-xr-x 1 root root 6728 May 28 13:17 terminal.mod
-rwxr-xr-x 1 root root 20256 May 28 13:17 terminfo.mod
-rwxr-xr-x 1 root root 2176 May 28 13:17 test_blockarg.mod
-rwxr-xr-x 1 root root 4112 May 28 13:17 testload.mod
-rwxr-xr-x 1 root root 8176 May 28 13:17 test.mod
-rwxr-xr-x 1 root root 3624 May 28 13:17 testspeed.mod
-rwxr-xr-x 1 root root 8568 May 28 13:17 tftp.mod
-rwxr-xr-x 1 root root 7848 May 28 13:17 tga.mod
-rwxr-xr-x 1 root root 2560 May 28 13:17 time.mod
-rwxr-xr-x 1 root root 38952 May 28 13:17 tpm2_key_protector.mod
-rwxr-xr-x 1 root root 10328 May 28 13:17 tpm.mod
-rwxr-xr-x 1 root root 1936 May 28 13:17 trig.mod
-rwxr-xr-x 1 root root 3760 May 28 13:17 tr.mod
-rwxr-xr-x 1 root root 2000 May 28 13:17 true.mod
-rwxr-xr-x 1 root root 37152 May 28 13:17 tss2.mod
-rwxr-xr-x 1 root root 14232 May 28 13:17 udf.mod
-rwxr-xr-x 1 root root 8680 May 28 13:17 ufs1_be.mod
-rwxr-xr-x 1 root root 8536 May 28 13:17 ufs1.mod
-rwxr-xr-x 1 root root 8544 May 28 13:17 ufs2.mod
-rwxr-xr-x 1 root root 11240 May 28 13:17 uhci.mod
-rwxr-xr-x 1 root root 6008 May 28 13:17 usb_keyboard.mod
-rwxr-xr-x 1 root root 18792 May 28 13:17 usb.mod
-rwxr-xr-x 1 root root 12576 May 28 13:17 usbms.mod
-rwxr-xr-x 1 root root 2856 May 28 13:17 usbserial_common.mod
-rwxr-xr-x 1 root root 3440 May 28 13:17 usbserial_ftdi.mod
-rwxr-xr-x 1 root root 3816 May 28 13:17 usbserial_pl2303.mod
-rwxr-xr-x 1 root root 2232 May 28 13:17 usbserial_usbdebug.mod
-rwxr-xr-x 1 root root 5528 May 28 13:17 usbtest.mod
-rwxr-xr-x 1 root root 8160 May 28 13:17 video_bochs.mod
-rwxr-xr-x 1 root root 8648 May 28 13:17 video_cirrus.mod
-rwxr-xr-x 1 root root 10248 May 28 13:17 video_colors.mod
-rwxr-xr-x 1 root root 28648 May 28 13:17 video_fb.mod
-rwxr-xr-x 1 root root 5624 May 28 13:17 videoinfo.mod
-rwxr-xr-x 1 root root 41 May 28 13:17 video.lst
-rwxr-xr-x 1 root root 12192 May 28 13:17 video.mod
-rwxr-xr-x 1 root root 3640 May 28 13:17 videotest_checksum.mod
-rwxr-xr-x 1 root root 5992 May 28 13:17 videotest.mod
-rwxr-xr-x 1 root root 2608 May 28 13:17 wrmsr.mod
-rwxr-xr-x 1 root root 12752 May 28 13:17 xfs.mod
-rwxr-xr-x 1 root root 45464 May 28 13:17 xnu.mod
-rwxr-xr-x 1 root root 3240 May 28 13:17 xnu_uuid.mod
-rwxr-xr-x 1 root root 3208 May 28 13:17 xnu_uuid_test.mod
-rwxr-xr-x 1 root root 19720 May 28 13:17 xzio.mod
-rwxr-xr-x 1 root root 8728 May 28 13:17 zfscrypt.mod
-rwxr-xr-x 1 root root 11120 May 28 13:17 zfsinfo.mod
-rwxr-xr-x 1 root root 69824 May 28 13:17 zfs.mod
-rwxr-xr-x 1 root root 3992 May 28 13:17 zstdio.mod
-rwxr-xr-x 1 root root 80720 May 28 13:17 zstd.mod
/efi/loader:
total 8
drwxr-xr-x 2 root root 4096 Jun 13 14:09 credentials
-rwxr-xr-x 1 root root 32 Jun 13 16:51 random-seed
/efi/loader/credentials:
total 8
-rwxr-xr-x 1 root root 6072 Jun 13 14:09 nvpcr-anchor.9d174915b7004a649a968a93f738a070.credOffline
Pages: 1