Grub with dual linux boot and nvme (grub-probe error "unknown nvme0n1")

Hi Everyone!
I new in here like you can see, i know i should present myself first but i think this is not the place.
So i going to try the most brief explaining the problem that got me 3 days aprox. researching and experimenting for resolve it (including in this forum)

Let start.
Got 2 linux distro on my lap, including manjaro in some of 5 days ago, the other one is fedora
grub is just seeing manjaro (like i said, is the most recent os on my ssd)

When i try to grub-mkconfig its output an grub-probe error, its dont recognize my ssd type:

sudo grub-mkconfig --output /boot/grub/grub.cfg

Generando un fichero de configuraciĂłn de grub...
Encontrado tema: /usr/share/grub/themes/manjaro/theme.txt
Encontrada imagen de linux: /boot/vmlinuz-6.1-x86_64
Encontrada imagen de memoria inicial: /boot/amd-ucode.img /boot/initramfs-6.1-x86_64.img
Found initrd fallback image: /boot/initramfs-6.1-x86_64-fallback.img
Aviso: os-prober will be executed to detect other bootable partitions.
Its output will be used to detect bootable binaries on them and create new boot entries.
**Encontrado Fedora Linux 38 (Workstation Edition) en /dev/nvme0n1p3**
Adding boot menu entry for **UEFI** Firmware Settings ...
Detecting snapshots ...
Found snapshot: 2023-08-22 00:50:16 | timeshift-btrfs/snapshots/2023-08-22_00-50-16/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found snapshot: 2023-08-22 00:03:39 | timeshift-btrfs/snapshots/2023-08-22_00-03-39/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found 2 snapshot(s)
Unmount /tmp/grub-btrfs.DAqFUQRuQ .. Success
Found memtest86+ image: /boot/memtest86+/memtest.bin
**/usr/bin/grub-probe: aviso: tipo de dispositivo nvme0n1 desconocido.**
Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
**/usr/bin/grub-probe: aviso: tipo de dispositivo nvme0n1 desconocido.**
hecho

so, there is an UEFI entry but i got 1 bios boot per os (2 bios boot, i dont know if this should be like that)

sudo fdisk -l

Disco /dev/nvme0n1: 953,87 GiB, 1024209543168 bytes, 2000409264 sectores
Modelo de disco: KINGSTON SKC3000S1024G                  
Unidades: sectores de 1 * 512 = 512 bytes
Tamaño de sector (lógico/físico): 512 bytes / 512 bytes
Tamaño de E/S (mínimo/óptimo): 512 bytes / 512 bytes
Tipo de etiqueta de disco: gpt
Identificador del disco: 967C5E21-2C8E-47B2-8DEC-0A5E81A2AFFE

Disposit.        Comienzo      Final   Sectores Tamaño Tipo
**/dev/nvme0n1p1       2048       4095       2048     1M Arranque de BIOS**
/dev/nvme0n1p2       4096    2101247    2097152     1G Sistema de ficheros de Linux
/dev/nvme0n1p3   11325440 1031262207 1019936768 486,3G Sistema de ficheros de Linux
/dev/nvme0n1p4 1277022208 2000375807  723353600 344,9G Sistema de ficheros de Linux
**/dev/nvme0n1p5 2000375808 2000409230      33423  16,3M Arranque de BIOS**
/dev/nvme0n1p6 1031262208 1033719807    2457600   1,2G Sistema de ficheros de Linux
/dev/nvme0n1p7 1033719808 1277022207  243302400   116G Sistema de ficheros de Linux

Las entradas de la tabla de particiones no estĂĄn en el orden del disco.

p1: bios fedora boot
p5: bios manjaro boot

p2: Fedora /boot
p3: Fedora /
p4: Manjaro /

p6: in there i got a new partition including a copy of bot os /boot (just in case and for try a manual new installation of grub with both os)
p7: a shared partition between 2 OS

sudo cat /etc/fstab

# /etc/fstab: static file system information.
#
# Use 'blkid' to print the universally unique identifier for a device; this may
# be used with UUID= as a more robust way to name devices that works even if
# disks are added and removed. See fstab(5).
#
# <file system>             <mount point>  <type>  <options>  <dump>  <pass>
UUID=db84186b-910d-4f49-906d-43078b385f06 /              btrfs   subvol=/@,defaults,discard=async,ssd 0 0
#UUID="10175850-d38b-4a79-8f5e-73c2c8460811 /boot	 ext4	 subvol=/@boot,deafults,discard=async,ssd 0 0
UUID=db84186b-910d-4f49-906d-43078b385f06 /home          btrfs   subvol=/@home,defaults,discard=async,ssd 0 0
UUID=db84186b-910d-4f49-906d-43078b385f06 /var/cache     btrfs   subvol=/@cache,defaults,discard=async,ssd 0 0
UUID=db84186b-910d-4f49-906d-43078b385f06 /var/log       btrfs   subvol=/@log,defaults,discard=async,ssd 0 0
UUID=ac885332-c140-4c3c-80fe-4aa45d1d5cef /home/danielignacioc/Documentos/calibre_biblioteca  btrfs defaults,discard=async,ssd 0 0
tmpfs                                     /tmp           tmpfs   defaults,noatime,mode=1777 0 0

p6 commented (i dont want to break manjaro too)
every fs is btrfs (except for p1, p5 and p6)

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
}

set menu_color_normal=light-gray/black
set menu_color_highlight=green/black

if [ x$feature_default_font_path = xy ] ; then
   font=unicode
else
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root db84186b-910d-4f49-906d-43078b385f06
    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=es_CL
  insmod gettext
fi
terminal_input console
terminal_output gfxterm
insmod part_gpt
insmod btrfs
search --no-floppy --fs-uuid --set=root db84186b-910d-4f49-906d-43078b385f06
insmod gfxmenu
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_24.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_48.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_bold_16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/dejavu_sans_mono_12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-18.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b12.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b14.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b16.pf2
loadfont ($root)/@/usr/share/grub/themes/manjaro/terminus-b18.pf2
insmod png
set theme=($root)/@/usr/share/grub/themes/manjaro/theme.txt
export theme
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=hidden
  set timeout=5
# Fallback hidden-timeout code in case the timeout_style feature is
# unavailable.
elif sleep --interruptible 5 ; then
  set timeout=0
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Manjaro Linux' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-db84186b-910d-4f49-906d-43078b385f06' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	search --no-floppy --fs-uuid --set=root db84186b-910d-4f49-906d-43078b385f06
	linux	/@/boot/vmlinuz-6.1-x86_64 root=UUID=db84186b-910d-4f49-906d-43078b385f06 rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
	initrd	/@/boot/amd-ucode.img /@/boot/initramfs-6.1-x86_64.img
}
submenu 'Opciones avanzadas para Manjaro Linux' $menuentry_id_option 'gnulinux-advanced-db84186b-910d-4f49-906d-43078b385f06' {
	menuentry 'Manjaro Linux (Kernel: 6.1.44-1-MANJARO x64)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.44-1-MANJARO x64-advanced-db84186b-910d-4f49-906d-43078b385f06' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod btrfs
		search --no-floppy --fs-uuid --set=root db84186b-910d-4f49-906d-43078b385f06
		linux	/@/boot/vmlinuz-6.1-x86_64 root=UUID=db84186b-910d-4f49-906d-43078b385f06 rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
		initrd	/@/boot/amd-ucode.img /@/boot/initramfs-6.1-x86_64.img
	}
	menuentry 'Manjaro Linux (Kernel: 6.1.44-1-MANJARO x64 - fallback initramfs)' --class manjaro --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-6.1.44-1-MANJARO x64-fallback-db84186b-910d-4f49-906d-43078b385f06' {
		load_video
		set gfxpayload=keep
		insmod gzio
		insmod part_gpt
		insmod btrfs
		search --no-floppy --fs-uuid --set=root db84186b-910d-4f49-906d-43078b385f06
		linux	/@/boot/vmlinuz-6.1-x86_64 root=UUID=db84186b-910d-4f49-906d-43078b385f06 rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
		initrd	/@/boot/initramfs-6.1-x86_64-fallback.img
	}
}

### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###

### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/30_uefi-firmware ###
if [ "$grub_platform" = "efi" ]; then
	menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
		fwsetup
		}
fi
### END /etc/grub.d/30_uefi-firmware ###

### BEGIN /etc/grub.d/35_fwupd ###
### END /etc/grub.d/35_fwupd ###

### 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 ###

### BEGIN /etc/grub.d/41_snapshots-btrfs ###
if [ ! -e "${prefix}/grub-btrfs.cfg" ]; then
echo ""
else
submenu 'Manjaro Linux snapshots' {
    configfile "${prefix}/grub-btrfs.cfg"
}
fi
### END /etc/grub.d/41_snapshots-btrfs ###

### BEGIN /etc/grub.d/60_memtest86+ ###
if [ "${grub_platform}" == "pc" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        search --fs-uuid --no-floppy --set=root  db84186b-910d-4f49-906d-43078b385f06
        linux16 /@/boot/memtest86+/memtest.bin 
    }
fi
### END /etc/grub.d/60_memtest86+ ###

### BEGIN /etc/grub.d/60_memtest86+-efi ###
if [ "${grub_platform}" == "efi" ]; then
    menuentry "Memory Tester (memtest86+)" --class memtest86 --class gnu --class tool {
        if loadfont unicode ; then
            set gfxmode=1024x768,800x600,auto
            set gfxpayload=800x600,1024x768
            terminal_output gfxterm
        fi
        search --fs-uuid --no-floppy --set=root  db84186b-910d-4f49-906d-43078b385f06
        linux /@/boot/memtest86+/memtest.efi 
    }
fi
### END /etc/grub.d/60_memtest86+-efi ###

there is no menuentry for fedora, i try to manual add in on 40_custom with no results (i move it to other place becouse it not work but going to post it too)

#!/bin/sh
exec tail -n +3 $0
# 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.
menuentry 'Fedora Linux' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
	load_video
	set gfxpayload=keep
	insmod gzio
	insmod part_gpt
	insmod btrfs
	search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
	linux	/@/root/boot/vmlinuz-6.4.10-200.fc38.x86_64 root=UUID=21d06782-32e8-45e7-bbd0-b0c27a58d3ca rw rootflags=subvol=@  quiet splash apparmor=1 security=appa
rmor udev.log_priority=3
	initrd	 /@/root/boot/initramfs-6.4.10-200.fc38.x86_64.img
}




menuentry 'Fedora Linux EFI' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option '>
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        chainloader /root/boot/efi/EFI/fedora/BOOTX64.EFI
}





menuentry 'Fedora Linux 2' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option '>
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        linux   /@/boot/vmlinuz-6.4.10-200.fc38.x86_64 root=UUID=21d06782-32e8-45e7-bbd0-b0c27a58d>
rmor udev.log_priority=3
        initrd   /@/boot/initramfs-6.4.10-200.fc38.x86_64.img
}




menuentry 'Fedora Linux EFI 2' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_opti>
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        chainloader /boot/efi/EFI/fedora/BOOTX64.EFI
}



inxi -Fxxxz

System:
  Kernel: 6.1.44-1-MANJARO arch: x86_64 bits: 64 compiler: gcc v: 13.2.1
    clocksource: tsc Desktop: GNOME v: 44.3 tk: GTK v: 3.24.38 wm: gnome-shell
    dm: GDM v: 44.1 Distro: Manjaro Linux base: Arch Linux
Machine:
  Type: Laptop System: LENOVO product: 81N6 v: Lenovo IdeaPad C340-14API
    serial: <superuser required> Chassis: type: 10 v: Lenovo IdeaPad C340-14API
    serial: <superuser required>
  Mobo: LENOVO model: LNVNB161216 v: SDK0J40679 WIN
    serial: <superuser required> UEFI-[Legacy]: LENOVO v: AGCN30WW(V1.13)
    date: 06/10/2022
Battery:
  ID-1: BAT1 charge: 38.9 Wh (100.0%) condition: 38.9/45.0 Wh (86.4%)
    volts: 17.3 min: 15.4 model: 0x53 0x4D 0x50 0x00 0x32 0x30 0 0x4C 0x31 0x38
    0x4D 0x34 0x50 0 type: Li-ion serial: <filter> status: full cycles: 436
CPU:
  Info: quad core model: AMD Ryzen 5 3500U with Radeon Vega Mobile Gfx
    bits: 64 type: MT MCP smt: enabled arch: Zen/Zen+ note: check rev: 1 cache:
    L1: 384 KiB L2: 2 MiB L3: 4 MiB
  Speed (MHz): avg: 1359 high: 1400 min/max: 1400/2100 boost: enabled cores:
    1: 1400 2: 1362 3: 1247 4: 1264 5: 1400 6: 1400 7: 1400 8: 1400
    bogomips: 33550
  Flags: avx avx2 ht lm nx pae sse sse2 sse3 sse4_1 sse4_2 sse4a ssse3 svm
Graphics:
  Device-1: AMD Picasso/Raven 2 [Radeon Vega Series / Radeon Mobile Series]
    vendor: Lenovo driver: amdgpu v: kernel arch: GCN-5 pcie: speed: 8 GT/s
    lanes: 16 ports: active: HDMI-A-1,eDP-1 empty: none bus-ID: 04:00.0
    chip-ID: 1002:15d8 class-ID: 0300 temp: 51.0 C
  Device-2: IMC Networks Integrated Camera driver: uvcvideo type: USB
    rev: 2.0 speed: 480 Mb/s lanes: 1 bus-ID: 1-4:3 chip-ID: 13d3:56b2
    class-ID: 0e02
  Display: wayland server: X.org v: 1.21.1.8 with: Xwayland v: 23.1.2
    compositor: gnome-shell driver: gpu: amdgpu display-ID: 0
  Monitor-1: HDMI-A-1 model: Samsung T24C301 res: 1920x1080 dpi: 94
    size: 521x293mm (20.51x11.54") diag: 598mm (23.5") modes: max: 1920x1080
    min: 720x400
  Monitor-2: eDP-1 model: BOE Display 0x075a res: 1366x768 dpi: 112
    size: 309x173mm (12.17x6.81") diag: 354mm (13.9") modes: max: 1366x768
    min: 640x480
  API: OpenGL v: 4.6 Mesa 23.1.5 renderer: AMD Radeon Vega 8 Graphics
    (raven LLVM 15.0.7 DRM 3.49 6.1.44-1-MANJARO) direct-render: Yes
Audio:
  Device-1: AMD Raven/Raven2/Fenghuang HDMI/DP Audio vendor: Lenovo
    driver: snd_hda_intel v: kernel pcie: speed: 8 GT/s lanes: 16
    bus-ID: 04:00.1 chip-ID: 1002:15de class-ID: 0403
  Device-2: AMD ACP/ACP3X/ACP6x Audio Coprocessor vendor: Lenovo
    driver: snd_pci_acp3x v: kernel pcie: speed: 8 GT/s lanes: 16
    bus-ID: 04:00.5 chip-ID: 1022:15e2 class-ID: 0480
  Device-3: AMD Family 17h/19h HD Audio vendor: Lenovo driver: snd_hda_intel
    v: kernel pcie: speed: 8 GT/s lanes: 16 bus-ID: 04:00.6 chip-ID: 1022:15e3
    class-ID: 0403
  API: ALSA v: k6.1.44-1-MANJARO status: kernel-api with: aoss
    type: oss-emulator
  Server-1: JACK v: 1.9.22 status: off
  Server-2: PipeWire v: 0.3.77 status: off
  Server-3: PulseAudio v: 16.1 status: active with: pulseaudio-alsa
    type: plugin
Network:
  Device-1: Qualcomm Atheros QCA9377 802.11ac Wireless Network Adapter
    vendor: Lenovo driver: ath10k_pci v: kernel pcie: speed: 2.5 GT/s lanes: 1
    bus-ID: 02:00.0 chip-ID: 168c:0042 class-ID: 0280
  IF: wlp2s0 state: up mac: <filter>
Bluetooth:
  Device-1: Qualcomm Atheros driver: btusb v: 0.8 type: USB rev: 2.0
    speed: 12 Mb/s lanes: 1 bus-ID: 3-2:3 chip-ID: 0cf3:e500 class-ID: e001
  Report: rfkill ID: hci0 rfk-id: 2 state: up address: see --recommends
Drives:
  Local Storage: total: 953.87 GiB used: 35.61 GiB (3.7%)
  ID-1: /dev/nvme0n1 vendor: Kingston model: SKC3000S1024G size: 953.87 GiB
    speed: 63.2 Gb/s lanes: 4 tech: SSD serial: <filter> fw-rev: EIFK31.6
    temp: 17.9 C scheme: GPT
Partition:
  ID-1: / size: 344.92 GiB used: 18.62 GiB (5.4%) fs: btrfs
    dev: /dev/nvme0n1p4
  ID-2: /home size: 344.92 GiB used: 18.62 GiB (5.4%) fs: btrfs
    dev: /dev/nvme0n1p4
  ID-3: /var/log size: 344.92 GiB used: 18.62 GiB (5.4%) fs: btrfs
    dev: /dev/nvme0n1p4
Swap:
  Alert: No swap data was found.
Sensors:
  System Temperatures: cpu: 50.4 C mobo: N/A gpu: amdgpu temp: 50.0 C
  Fan Speeds (rpm): N/A
Info:
  Processes: 330 Uptime: 1h 43m wakeups: 3 Memory: total: 6 GiB
  available: 5.73 GiB used: 2.7 GiB (47.2%) Init: systemd v: 253
  default: graphical Compilers: gcc: 13.2.1 clang: 15.0.7 Packages: pm: pacman
  pkgs: 1180 Shell: Zsh v: 5.9 running-in: gnome-terminal inxi: 3.3.29

sudo update-grub && journalctl -b --reverse --lines=50

Generando un fichero de configuraciĂłn de grub...
Encontrado tema: /usr/share/grub/themes/manjaro/theme.txt
Encontrada imagen de linux: /boot/vmlinuz-6.1-x86_64
Encontrada imagen de memoria inicial: /boot/amd-ucode.img /boot/initramfs-6.1-x86_64.img
Found initrd fallback image: /boot/initramfs-6.1-x86_64-fallback.img
Aviso: os-prober will be executed to detect other bootable partitions.
Its output will be used to detect bootable binaries on them and create new boot entries.
Encontrado Fedora Linux 38 (Workstation Edition) en /dev/nvme0n1p3
Adding boot menu entry for UEFI Firmware Settings ...
Detecting snapshots ...
Found snapshot: 2023-08-22 00:50:16 | timeshift-btrfs/snapshots/2023-08-22_00-50-16/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found snapshot: 2023-08-22 00:03:39 | timeshift-btrfs/snapshots/2023-08-22_00-03-39/@ | ondemand | {timeshift-autosnap} {created before upgrade} |
Found 2 snapshot(s)
Unmount /tmp/grub-btrfs.f3n8malRro .. Success
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: aviso: tipo de dispositivo nvme0n1 desconocido.
Found memtest86+ EFI image: /boot/memtest86+/memtest.efi
/usr/bin/grub-probe: aviso: tipo de dispositivo nvme0n1 desconocido.
hecho
ago 23 20:04:32 ecolink sudo[14347]: pam_unix(sudo:session): session closed for user root
ago 23 20:04:32 ecolink systemd[1]: tmp-grub\x2dbtrfs.f3n8malRro.mount: Deactivated successfully.
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/41_custom ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fi
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: source $prefix/custom.cfg
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: elif [ -z "${config_directory}" -a -f  $prefix/custom.cfg ]; then
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: source ${config_directory}/custom.cfg
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: if [ -f  ${config_directory}/custom.cfg ]; then
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/41_custom ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/40_custom ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: # the 'exec tail' line above.
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: # menu entries you want to add after this comment.  Be careful not to change
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: # This file provides an easy way to add custom menu entries.  Simply type the
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/40_custom ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/35_fwupd ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/35_fwupd ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/30_uefi-firmware ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fi
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: }
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fwsetup
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: menuentry 'UEFI Firmware Settings' $menuentry_id_option 'uefi-firmware' {
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: if [ "$grub_platform" = "efi" ]; then
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/30_uefi-firmware ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/30_os-prober ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/30_os-prober ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/20_ppc_terminfo ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/20_ppc_terminfo ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/20_linux_xen ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/20_linux_xen ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/14_menu_show_once ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fi
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fi
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: save_env menu_show_once_timeout
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: unset menu_show_once_timeout
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: set timeout="${menu_show_once_timeout}"
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: set timeout_style=menu
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: if [ "${menu_show_once_timeout}" ]; then
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: if [ x$feature_timeout_style = xy ]; then
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### BEGIN /etc/grub.d/14_menu_show_once ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing:
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: ### END /etc/grub.d/12_menu_auto_hide ###
ago 23 20:04:31 ecolink root[15292]: 40grub2: debug: parsing: fi

any other output you need, please let me know
thanks for read

Hello @Freakazoid :wink:

You are not first one asking this. I guess Fedora and Manjaro have both their own BTRFS partition. It is simply this: Grub cannot detect other Distros/OS on other BTRFS partitions, you have to manually add it.

Fedora:

Manjaro:

  1. No rootflags is set
  2. no rw
  3. It is cut off, see > at the end.
4 Likes

@megavolt

ups jaj thanks i dont see that, thats on “Fedora Linux 2” menuentry, i move, like i said, that file to another location becouse now its obviously for me why not worked and send me others error
so, i remove that entry of the file and the others one on that file (really i dont remove thems, i copy the content to other files and on it i remove 3/4 menuentry i only left the first one i create
with the menuentry title “Fedora Linux” that was wight (i supossed) and push the content on 40_custom
but it doesn’t work, and i maybe know why, i should put it directly on grub.cfg otherway have to “grub-update” and we return to the main problem

/usr/bin/grub-probe: aviso: tipo de dispositivo nvme0n1 desconocido.

so, i go to edit grub.cfg directly and i come back to finish/continue the story
thanks a lot for your time and help good Sir. @megavolt
best for you

No, /etc/grub.d/40_custom is the correct place.

That is not a problem. It is just an informal warning.

That would the better approach:

But 1. the efi file is not on the root partition, but on a separated vfat efi partition and 2. it would be rather: /EFI/fedora/BOOTX64.EFI on this efi partition.

Something like that should be enough:

menuentry 'Fedora' {
        insmod part_gpt
        insmod fat
        search --no-floppy --fs-uuid --set=root <UUID>
        chainloader /EFI/fedora/BOOTX64.EFI
}

But that would boot fedora’s grub and not directly boot fedora.

1 Like

beautiful! its working, the grub.cfg its responding to changes so now only have to pointing right to the disk and its done
thanks a lot! you are a modern wizard @megavolt

yes, its one of the menuentry i remove.
and yes you’re right 40_custom put the entry on the place i make some modfications of the but directly on grub.cfg, i have to write it on 40_custom

@megavolt Friend, i really, really sorry i hurry up in my judge and i mark too early the solved check, i have to unmark it

there is no way but i a little closer, fedora maybe i can say it do a kind of boot, i said “kind” becouse show me the fedora logo about 3 or 5s and then show me an emergency black screen saying something about maintance and a log file that dont tell me much about it, it show me the root switch service or something like that can’t be found or can’t up the root env, so i think it lost root fs
 anyway, i put on 40_custom about 13 menuentries (i wrote it well?) with obviously not all the variation that i can do but, a lot
 i left in here if you want to continue help me (i really appreciate that, and in fact i appreciate all the support you gave me ) and/or anybody want to help me. i going to left the fs tree of the boot part too:

cat /etc/grub.d/40_custom

#!/bin/sh
exec tail -n +3 $0
# 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.
menuentry 'Fedora Linux 1 - p3 root/home no boot' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-fc083501-8574-41f9-9b50-fdbb18b7200a' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid --set=root fc083501-8574-41f9-9b50-fdbb18b7200a
        linux   /@/vmlinuz-6.4.10-200.fc38.x86_64 root=UUID=fc083501-8574-41f9-9b50-fdbb18b7200a rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
        initrd  /@/initramfs-6.4.10-200.fc38.x86_64.img
}



menuentry 'Fedora Linux 2 - p2 boot btrfs + options + rw' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid fc083501-8574-41f9-9b50-fdbb18b7200a --set=root
        search --no-floppy --fs-uuid 21d06782-32e8-45e7-bbd0-b0c27a58d3ca --set=grub_boot
        linux   $grub_boot/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/disk/by-uuid/$root  rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
        initrd  $grub_boot/initramfs-6.4.10-200.fc38.x86_64.img
}


menuentry 'Fedora Linux 3 - p2 boot ext2 s/options + ro' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid fc083501-8574-41f9-9b50-fdbb18b7200a --set=root
        search --no-floppy --fs-uuid 21d06782-32e8-45e7-bbd0-b0c27a58d3ca --set=grub_boot
        linux   $grub_boot/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/disk/by-uuid/$root ro
        initrd  $grub_boot/initramfs-6.4.10-200.fc38.x86_64.img
}




menuentry 'Fedora 4: EFI fat insmod (?) BOOT/BOOTx64.efi ÂżMS?' {
        insmod part_gpt
        insmod fat
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        chainloader /efi/EFI/BOOT/BOOTX64.EFI
}


menuentry 'Fedora 5: EFI btrfs insmod (?) BOOT/BOOTx64.efi ÂżMS?' {
        insmod part_gpt
        insmod btrfs
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        chainloader /efi/EFI/BOOT/BOOTX64.EFI
}


menuentry 'Fedora 6: EFI ext2 insmod (?) BOOT/BOOTx64.efi ÂżMS?' {
        insmod part_gpt
        insmod ext2
        search --no-floppy --fs-uuid --set=root 21d06782-32e8-45e7-bbd0-b0c27a58d3ca
        chainloader /efi/EFI/BOOT/BOOTX64.EFI
}




menuentry 'Fedora Linux 7 - p2 boot fat insmod UUID + options + rw' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod fat
        search --no-floppy --fs-uuid fc083501-8574-41f9-9b50-fdbb18b7200a --set=root
        search --no-floppy --fs-uuid 21d06782-32e8-45e7-bbd0-b0c27a58d3ca --set=grub_boot
        linux   $grub_boot/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/disk/by-uuid/$root  rw rootflags=subvol=@  quiet splash apparmor=1 security=apparmor udev.log_priority=3
        initrd  $grub_boot/initramfs-6.4.10-200.fc38.x86_64.img
}


menuentry 'Fedora Linux 8 - p2 boot ext2 insmod UUID s/options + ro' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod ext2
        search --no-floppy --fs-uuid fc083501-8574-41f9-9b50-fdbb18b7200a --set=root
        search --no-floppy --fs-uuid 21d06782-32e8-45e7-bbd0-b0c27a58d3ca --set=grub_boot
        linux   $grub_boot/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/disk/by-uuid/$root ro
        initrd  $grub_boot/initramfs-6.4.10-200.fc38.x86_64.img
}


menuentry 'Fedora Linux 9 - p2 boot btrfs insmod (hd0,gp2) + options + rw SIN SUBVOL ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash apparmor=1 security=apparmor udev.log_priority=3
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        boot
}


menuentry 'Fedora Linux 10 - p2 boot fat insmod (hd0,gp2) + sin options + rw ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod fat
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        boot
}


menuentry 'Fedora Linux 11 - p2 boot ext2 insmod (hd0,gp2) + sin options + rw ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod ext2
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        boot
}









menuentry 'Fedora Linux 12 SIN LINEA FINAL BOOT - p2 boot btrfs insmod (hd0,gp2) + options + rw SIN SUBVOL ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod btrfs
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash apparmor=1 security=apparmor udev.log_priority=3
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        
}


menuentry 'Fedora Linux 13 - SIN LINEA FINAL BOOT p2 boot fat insmod (hd0,gp2) + sin options + rw ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod fat
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        
}


menuentry 'Fedora Linux 14 - SIN LINEA FINAL BOOT p2 boot ext2 insmod (hd0,gp2) + sin options + rw ' --class fedora --class gnu-linux --class gnu --class os $menuentry_id_option 'gnulinux-simple-21d06782-32e8-45e7-bbd0-b0c27a58d3ca' {
        load_video
        set gfxpayload=keep
        insmod gzio
        insmod part_gpt
        insmod ext2
        
        set root=(hd0,gpt3)
        linux   (hd0,gpt2)/vmlinuz-6.4.10-200.fc38.x86_64 root=/dev/nvme0n1p3 rw quiet splash
        initrd  (hd0,gpt2)/initramfs-6.4.10-200.fc38.x86_64.img
        
}

the folders on nvme0n1p3 (root) in root there’s 2 folders ‘home’ and ‘root’ so like you can see on menuentries i undestand i have to put path to root folder

and the boot fs in nvme0n1p2:

ls -l --color=auto /mnt

total 347816
-rw-r--r-- 1 root root    258294 ago 10 20:00 config-6.4.10-200.fc38.x86_64
-rw-r--r-- 1 root root    258305 ago 15 20:00 config-6.4.11-200.fc38.x86_64
-rw-r--r-- 1 root root    258197 ago  2 20:00 config-6.4.8-200.fc38.x86_64
drwx------ 4 root root      4096 abr 13 17:47 efi
drwx------ 5 root root      4096 ago 21 22:57 grub2
-rw------- 1 root root 111720552 jul 21 21:28 initramfs-0-rescue-2ec172ea3465470fa8be3097d46b9c15.img
-rw------- 1 root root  53852053 ago 17 16:37 initramfs-6.4.10-200.fc38.x86_64.img
-rw------- 1 root root  53853520 ago 19 09:31 initramfs-6.4.11-200.fc38.x86_64.img
-rw------- 1 root root  52909820 ago  9 21:15 initramfs-6.4.8-200.fc38.x86_64.img
drwxr-xr-x 3 root root      4096 jul 21 21:26 loader
drwx------ 2 root root     16384 jul 21 21:22 lost+found
lrwxrwxrwx 1 root root        46 ago 17 16:37 symvers-6.4.10-200.fc38.x86_64.xz -> /lib/modules/6.4.10-200.fc38.x86_64/symvers.xz
lrwxrwxrwx 1 root root        46 ago 19 09:31 symvers-6.4.11-200.fc38.x86_64.xz -> /lib/modules/6.4.11-200.fc38.x86_64/symvers.xz
lrwxrwxrwx 1 root root        45 ago  9 21:15 symvers-6.4.8-200.fc38.x86_64.xz -> /lib/modules/6.4.8-200.fc38.x86_64/symvers.xz
-rw------- 1 root root   8550798 ago 10 20:00 System.map-6.4.10-200.fc38.x86_64
-rw------- 1 root root   8549615 ago 15 20:00 System.map-6.4.11-200.fc38.x86_64
-rw------- 1 root root   8547941 ago  2 20:00 System.map-6.4.8-200.fc38.x86_64
-rwxr-xr-x 1 root root  14215976 jul 21 21:27 vmlinuz-0-rescue-2ec172ea3465470fa8be3097d46b9c15
-rwxr-xr-x 1 root root  14379720 ago 10 20:00 vmlinuz-6.4.10-200.fc38.x86_64
-rwxr-xr-x 1 root root  14376872 ago 15 20:00 vmlinuz-6.4.11-200.fc38.x86_64
-rwxr-xr-x 1 root root  14376392 ago  2 20:00 vmlinuz-6.4.8-200.fc38.x86_64

and there will be blood and tears (maybe is not necessary but i think can be useful, maybe is better post it than no )

ls -lR /mnt

.:
total 347816
-rw-r--r-- 1 root root    258294 ago 10 20:00 config-6.4.10-200.fc38.x86_64
-rw-r--r-- 1 root root    258305 ago 15 20:00 config-6.4.11-200.fc38.x86_64
-rw-r--r-- 1 root root    258197 ago  2 20:00 config-6.4.8-200.fc38.x86_64
drwx------ 4 root root      4096 abr 13 17:47 efi
drwx------ 5 root root      4096 ago 21 22:57 grub2
-rw------- 1 root root 111720552 jul 21 21:28 initramfs-0-rescue-2ec172ea3465470fa8be3097d46b9c15.img
-rw------- 1 root root  53852053 ago 17 16:37 initramfs-6.4.10-200.fc38.x86_64.img
-rw------- 1 root root  53853520 ago 19 09:31 initramfs-6.4.11-200.fc38.x86_64.img
-rw------- 1 root root  52909820 ago  9 21:15 initramfs-6.4.8-200.fc38.x86_64.img
drwxr-xr-x 3 root root      4096 jul 21 21:26 loader
drwx------ 2 root root     16384 jul 21 21:22 lost+found
lrwxrwxrwx 1 root root        46 ago 17 16:37 symvers-6.4.10-200.fc38.x86_64.xz -> /lib/modules/6.4.10-200.fc38.x86_64/symvers.xz
lrwxrwxrwx 1 root root        46 ago 19 09:31 symvers-6.4.11-200.fc38.x86_64.xz -> /lib/modules/6.4.11-200.fc38.x86_64/symvers.xz
lrwxrwxrwx 1 root root        45 ago  9 21:15 symvers-6.4.8-200.fc38.x86_64.xz -> /lib/modules/6.4.8-200.fc38.x86_64/symvers.xz
-rw------- 1 root root   8550798 ago 10 20:00 System.map-6.4.10-200.fc38.x86_64
-rw------- 1 root root   8549615 ago 15 20:00 System.map-6.4.11-200.fc38.x86_64
-rw------- 1 root root   8547941 ago  2 20:00 System.map-6.4.8-200.fc38.x86_64
-rwxr-xr-x 1 root root  14215976 jul 21 21:27 vmlinuz-0-rescue-2ec172ea3465470fa8be3097d46b9c15
-rwxr-xr-x 1 root root  14379720 ago 10 20:00 vmlinuz-6.4.10-200.fc38.x86_64
-rwxr-xr-x 1 root root  14376872 ago 15 20:00 vmlinuz-6.4.11-200.fc38.x86_64
-rwxr-xr-x 1 root root  14376392 ago  2 20:00 vmlinuz-6.4.8-200.fc38.x86_64

./efi:
total 12
drwxr-xr-x 4 root root 4096 abr 13 17:44 EFI
-rw-r--r-- 1 root root   34 ene 18  2023 mach_kernel
drwxr-xr-x 3 root root 4096 abr 13 17:47 System

./efi/EFI:
total 8
drwx------ 2 root root 4096 abr 13 17:47 BOOT
drwx------ 2 root root 4096 jul 21 21:46 fedora

./efi/EFI/BOOT:
total 1820
-rwx------ 1 root root 742064 jul  7  2022 BOOTIA32.EFI
-rwx------ 1 root root 946712 jul  7  2022 BOOTX64.EFI
-rwx------ 1 root root  70776 jul  7  2022 fbia32.efi
-rwx------ 1 root root  90280 jul  7  2022 fbx64.efi

./efi/EFI/fedora:
total 15920
-rwx------ 1 root root     112 jul  7  2022 BOOTIA32.CSV
-rwx------ 1 root root     110 jul  7  2022 BOOTX64.CSV
-rwx------ 1 root root 2522432 abr 11 20:00 gcdia32.efi
-rwx------ 1 root root 3530048 abr 11 20:00 gcdx64.efi
-rwx------ 1 root root 2522432 abr 11 20:00 grubia32.efi
-rwx------ 1 root root 3530048 abr 11 20:00 grubx64.efi
-rwx------ 1 root root  678576 jul  7  2022 mmia32.efi
-rwx------ 1 root root  857248 jul  7  2022 mmx64.efi
-rwx------ 1 root root  946712 jul  7  2022 shim.efi
-rwx------ 1 root root  742064 jul  7  2022 shimia32.efi
-rwx------ 1 root root  946712 jul  7  2022 shimx64.efi

./efi/System:
total 4
drwxr-xr-x 3 root root 4096 abr 13 17:47 Library

./efi/System/Library:
total 4
drwxr-xr-x 2 root root 4096 abr 13 17:47 CoreServices

./efi/System/Library/CoreServices:
total 4
-rw-r--r-- 1 root root 384 ene 18  2023 SystemVersion.plist

./grub2:
total 52
-rw-r--r-- 1 root root    68 jul 21 21:28 device.map
-rw-r--r-- 1 root root    68 jul 21 21:26 device.map.anacbak
drwx------ 2 root root  4096 jul 21 21:46 fonts
-rw------- 1 root root  6778 jul 21 21:28 grub.cfg
-rw------- 1 root root  1024 ago 21 22:57 grubenv
-rw------- 1 root root  1024 ago 20 20:21 grubenvC3E9SV
drwxr-xr-x 2 root root 20480 jul 21 21:28 i386-pc
drwxr-xr-x 2 root root  4096 jul 21 21:28 locale

./grub2/fonts:
total 2340
-rwx------ 1 root root 2394108 abr 11 20:00 unicode.pf2

./grub2/i386-pc:
total 3348
-rw-r--r-- 1 root root  13220 jul 21 21:28 acpi.mod
-rw-r--r-- 1 root root   1428 jul 21 21:28 adler32.mod
-rw-r--r-- 1 root root   7072 jul 21 21:28 affs.mod
-rw-r--r-- 1 root root   8884 jul 21 21:28 afs.mod
-rw-r--r-- 1 root root   1764 jul 21 21:28 afsplitter.mod
-rw-r--r-- 1 root root  21532 jul 21 21:28 ahci.mod
-rw-r--r-- 1 root root    492 jul 21 21:28 all_video.mod
-rw-r--r-- 1 root root   1056 jul 21 21:28 aout.mod
-rw-r--r-- 1 root root  43840 jul 21 21:28 appendedsig.mod
-rw-r--r-- 1 root root  14852 jul 21 21:28 appended_signature_test.mod
-rw-r--r-- 1 root root   3656 jul 21 21:28 archelp.mod
-rw-r--r-- 1 root root  38780 jul 21 21:28 asn1.mod
-rw-r--r-- 1 root root   7524 jul 21 21:28 ata.mod
-rw-r--r-- 1 root root   8992 jul 21 21:28 at_keyboard.mod
-rw-r--r-- 1 root root   1388 jul 21 21:28 backtrace.mod
-rw-r--r-- 1 root root   9824 jul 21 21:28 bfs.mod
-rw-r--r-- 1 root root   6488 jul 21 21:28 biosdisk.mod
-rw-r--r-- 1 root root   2972 jul 21 21:28 bitmap.mod
-rw-r--r-- 1 root root   5524 jul 21 21:28 bitmap_scale.mod
-rw-r--r-- 1 root root   2468 jul 21 21:28 blocklist.mod
-rw-r--r-- 1 root root  14916 jul 21 21:28 blscfg.mod
-rw-r--r-- 1 root root    512 jul 21 21:28 boot.img
-rw-r--r-- 1 root root   3156 jul 21 21:28 boot.mod
-rw-r--r-- 1 root root  41440 jul 21 21:28 bsd.mod
-rw-r--r-- 1 root root   2840 jul 21 21:28 bswap_test.mod
-rw-r--r-- 1 root root  39024 jul 21 21:28 btrfs.mod
-rw-r--r-- 1 root root   2636 jul 21 21:28 bufio.mod
-rw-r--r-- 1 root root   3420 jul 21 21:28 cat.mod
-rw-r--r-- 1 root root   4780 jul 21 21:28 cbfs.mod
-rw-r--r-- 1 root root   3752 jul 21 21:28 cbls.mod
-rw-r--r-- 1 root root   2860 jul 21 21:28 cbmemc.mod
-rw-r--r-- 1 root root   1148 jul 21 21:28 cbtable.mod
-rw-r--r-- 1 root root   3140 jul 21 21:28 cbtime.mod
-rw-r--r-- 1 root root   4144 jul 21 21:28 chain.mod
-rw-r--r-- 1 root root   3040 jul 21 21:28 cmdline_cat_test.mod
-rw-r--r-- 1 root root   1420 jul 21 21:28 cmosdump.mod
-rw-r--r-- 1 root root   2348 jul 21 21:28 cmostest.mod
-rw-r--r-- 1 root root   2288 jul 21 21:28 cmp.mod
-rw-r--r-- 1 root root   6000 jul 21 21:28 cmp_test.mod
-rw-r--r-- 1 root root   4196 jul 21 21:28 command.lst
-rw-r--r-- 1 root root   2348 jul 21 21:28 configfile.mod
-rw-r--r-- 1 root root  32617 jul 21 21:28 core.img
-rw-r--r-- 1 root root   3316 jul 21 21:28 cpio_be.mod
-rw-r--r-- 1 root root   3252 jul 21 21:28 cpio.mod
-rw-r--r-- 1 root root   1844 jul 21 21:28 cpuid.mod
-rw-r--r-- 1 root root   1900 jul 21 21:28 crc64.mod
-rw-r--r-- 1 root root  15708 jul 21 21:28 cryptodisk.mod
-rw-r--r-- 1 root root    936 jul 21 21:28 crypto.lst
-rw-r--r-- 1 root root   6252 jul 21 21:28 crypto.mod
-rw-r--r-- 1 root root   4788 jul 21 21:28 cs5536.mod
-rw-r--r-- 1 root root   1944 jul 21 21:28 ctz_test.mod
-rw-r--r-- 1 root root   1852 jul 21 21:28 datehook.mod
-rw-r--r-- 1 root root   2404 jul 21 21:28 date.mod
-rw-r--r-- 1 root root   3336 jul 21 21:28 datetime.mod
-rw-r--r-- 1 root root  15356 jul 21 21:28 diskfilter.mod
-rw-r--r-- 1 root root   3148 jul 21 21:28 disk.mod
-rw-r--r-- 1 root root   1084 jul 21 21:28 div.mod
-rw-r--r-- 1 root root   6760 jul 21 21:28 div_test.mod
-rw-r--r-- 1 root root   2220 jul 21 21:28 dm_nv.mod
-rw-r--r-- 1 root root   6248 jul 21 21:28 drivemap.mod
-rw-r--r-- 1 root root   2332 jul 21 21:28 echo.mod
-rw-r--r-- 1 root root  34448 jul 21 21:28 efiemu.mod
-rw-r--r-- 1 root root  21088 jul 21 21:28 ehci.mod
-rw-r--r-- 1 root root   5616 jul 21 21:28 elf.mod
-rw-r--r-- 1 root root   1556 jul 21 21:28 eval.mod
-rw-r--r-- 1 root root   8272 jul 21 21:28 exfat.mod
-rw-r--r-- 1 root root   1340 jul 21 21:28 exfctest.mod
-rw-r--r-- 1 root root   8684 jul 21 21:28 ext2.mod
-rw-r--r-- 1 root root   6760 jul 21 21:28 extcmd.mod
-rw-r--r-- 1 root root  10412 jul 21 21:28 f2fs.mod
-rw-r--r-- 1 root root   8504 jul 21 21:28 fat.mod
-rw-r--r-- 1 root root  22028 jul 21 21:28 file.mod
-rw-r--r-- 1 root root  19904 jul 21 21:28 font.mod
-rw-r--r-- 1 root root   2916 jul 21 21:28 freedos.mod
-rw-r--r-- 1 root root   3912 jul 21 21:28 fshelp.mod
-rw-r--r-- 1 root root    219 jul 21 21:28 fs.lst
-rw-r--r-- 1 root root  35960 jul 21 21:28 functional_test.mod
-rw-r--r-- 1 root root   2100 jul 21 21:28 gcry_arcfour.mod
-rw-r--r-- 1 root root  11720 jul 21 21:28 gcry_blowfish.mod
-rw-r--r-- 1 root root  52100 jul 21 21:28 gcry_camellia.mod
-rw-r--r-- 1 root root  20716 jul 21 21:28 gcry_cast5.mod
-rw-r--r-- 1 root root  11148 jul 21 21:28 gcry_crc.mod
-rw-r--r-- 1 root root  24432 jul 21 21:28 gcry_des.mod
-rw-r--r-- 1 root root   2572 jul 21 21:28 gcry_dsa.mod
-rw-r--r-- 1 root root   4420 jul 21 21:28 gcry_idea.mod
-rw-r--r-- 1 root root   4148 jul 21 21:28 gcry_md4.mod
-rw-r--r-- 1 root root   5212 jul 21 21:28 gcry_md5.mod
-rw-r--r-- 1 root root   3716 jul 21 21:28 gcry_rfc2268.mod
-rw-r--r-- 1 root root  21848 jul 21 21:28 gcry_rijndael.mod
-rw-r--r-- 1 root root  13732 jul 21 21:28 gcry_rmd160.mod
-rw-r--r-- 1 root root   2188 jul 21 21:28 gcry_rsa.mod
-rw-r--r-- 1 root root  19520 jul 21 21:28 gcry_seed.mod
-rw-r--r-- 1 root root  62948 jul 21 21:28 gcry_serpent.mod
-rw-r--r-- 1 root root  10452 jul 21 21:28 gcry_sha1.mod
-rw-r--r-- 1 root root   5476 jul 21 21:28 gcry_sha256.mod
-rw-r--r-- 1 root root   8620 jul 21 21:28 gcry_sha512.mod
-rw-r--r-- 1 root root  14268 jul 21 21:28 gcry_tiger.mod
-rw-r--r-- 1 root root  53528 jul 21 21:28 gcry_twofish.mod
-rw-r--r-- 1 root root  27700 jul 21 21:28 gcry_whirlpool.mod
-rw-r--r-- 1 root root  26552 jul 21 21:28 gdb.mod
-rw-r--r-- 1 root root   7372 jul 21 21:28 geli.mod
-rw-r--r-- 1 root root   6168 jul 21 21:28 gettext.mod
-rw-r--r-- 1 root root  55552 jul 21 21:28 gfxmenu.mod
-rw-r--r-- 1 root root   3080 jul 21 21:28 gfxterm_background.mod
-rw-r--r-- 1 root root   5284 jul 21 21:28 gfxterm_menu.mod
-rw-r--r-- 1 root root  12396 jul 21 21:28 gfxterm.mod
-rw-r--r-- 1 root root   4508 jul 21 21:28 gptsync.mod
-rw-r--r-- 1 root root  11416 jul 21 21:28 gzio.mod
-rw-r--r-- 1 root root   5752 jul 21 21:28 halt.mod
-rw-r--r-- 1 root root   6104 jul 21 21:28 hashsum.mod
-rw-r--r-- 1 root root   7832 jul 21 21:28 hdparm.mod
-rw-r--r-- 1 root root   1176 jul 21 21:28 hello.mod
-rw-r--r-- 1 root root   2868 jul 21 21:28 help.mod
-rw-r--r-- 1 root root   3352 jul 21 21:28 hexdump.mod
-rw-r--r-- 1 root root   9468 jul 21 21:28 hfs.mod
-rw-r--r-- 1 root root   4176 jul 21 21:28 hfspluscomp.mod
-rw-r--r-- 1 root root  11288 jul 21 21:28 hfsplus.mod
-rw-r--r-- 1 root root   7980 jul 21 21:28 http.mod
-rw-r--r-- 1 root root   2288 jul 21 21:28 increment.mod
-rw-r--r-- 1 root root   3308 jul 21 21:28 iorw.mod
-rw-r--r-- 1 root root  12472 jul 21 21:28 iso9660.mod
-rw-r--r-- 1 root root   9024 jul 21 21:28 jfs.mod
-rw-r--r-- 1 root root  11392 jul 21 21:28 jpeg.mod
-rw-r--r-- 1 root root   5252 jul 21 21:28 json.mod
-rw-r--r-- 1 root root   5880 jul 21 21:28 keylayouts.mod
-rw-r--r-- 1 root root   2056 jul 21 21:28 keystatus.mod
-rw-r--r-- 1 root root  11368 jul 21 21:28 ldm.mod
-rw-r--r-- 1 root root  34640 jul 21 21:28 legacycfg.mod
-rw-r--r-- 1 root root  14444 jul 21 21:28 legacy_password_test.mod
-rw-r--r-- 1 root root  12472 jul 21 21:28 linux.mod
-rw-r--r-- 1 root root   7992 jul 21 21:28 loadenv.mod
-rw-r--r-- 1 root root   3444 jul 21 21:28 loopback.mod
-rw-r--r-- 1 root root   5776 jul 21 21:28 lsacpi.mod
-rw-r--r-- 1 root root   2668 jul 21 21:28 lsapm.mod
-rw-r--r-- 1 root root   1920 jul 21 21:28 lsmmap.mod
-rw-r--r-- 1 root root   4392 jul 21 21:28 ls.mod
-rw-r--r-- 1 root root   5188 jul 21 21:28 lspci.mod
-rw-r--r-- 1 root root  18716 jul 21 21:28 luks2.mod
-rw-r--r-- 1 root root   5248 jul 21 21:28 luks.mod
-rw-r--r-- 1 root root  11556 jul 21 21:28 lvm.mod
-rw-r--r-- 1 root root   6968 jul 21 21:28 lzopio.mod
-rw-r--r-- 1 root root   4052 jul 21 21:28 macbless.mod
-rw-r--r-- 1 root root  11536 jul 21 21:28 macho.mod
-rw-r--r-- 1 root root   2636 jul 21 21:28 mda_text.mod
-rw-r--r-- 1 root root   2272 jul 21 21:28 mdraid09_be.mod
-rw-r--r-- 1 root root   2204 jul 21 21:28 mdraid09.mod
-rw-r--r-- 1 root root   2268 jul 21 21:28 mdraid1x.mod
-rw-r--r-- 1 root root   2288 jul 21 21:28 memdisk.mod
-rw-r--r-- 1 root root   3076 jul 21 21:28 memrw.mod
-rw-r--r-- 1 root root   4292 jul 21 21:28 minicmd.mod
-rw-r--r-- 1 root root   5612 jul 21 21:28 minix2_be.mod
-rw-r--r-- 1 root root   5352 jul 21 21:28 minix2.mod
-rw-r--r-- 1 root root   5644 jul 21 21:28 minix3_be.mod
-rw-r--r-- 1 root root   5384 jul 21 21:28 minix3.mod
-rw-r--r-- 1 root root   5356 jul 21 21:28 minix_be.mod
-rw-r--r-- 1 root root   5096 jul 21 21:28 minix.mod
-rw-r--r-- 1 root root  11604 jul 21 21:28 mmap.mod
-rw-r--r-- 1 root root   5750 jul 21 21:28 moddep.lst
-rw-r--r-- 1 root root   2862 jul 21 21:28 modinfo.sh
-rw-r--r-- 1 root root   2656 jul 21 21:28 morse.mod
-rw-r--r-- 1 root root  40428 jul 21 21:28 mpi.mod
-rw-r--r-- 1 root root   2804 jul 21 21:28 msdospart.mod
-rw-r--r-- 1 root root   2144 jul 21 21:28 mul_test.mod
-rw-r--r-- 1 root root  22532 jul 21 21:28 multiboot2.mod
-rw-r--r-- 1 root root  21048 jul 21 21:28 multiboot.mod
-rw-r--r-- 1 root root   5268 jul 21 21:28 nativedisk.mod
-rw-r--r-- 1 root root  88208 jul 21 21:28 net.mod
-rw-r--r-- 1 root root   3572 jul 21 21:28 newc.mod
-rw-r--r-- 1 root root   9576 jul 21 21:28 nilfs2.mod
-rw-r--r-- 1 root root 158176 jul 21 21:28 normal.mod
-rw-r--r-- 1 root root   5952 jul 21 21:28 ntfscomp.mod
-rw-r--r-- 1 root root  14740 jul 21 21:28 ntfs.mod
-rw-r--r-- 1 root root   2776 jul 21 21:28 ntldr.mod
-rw-r--r-- 1 root root   3280 jul 21 21:28 odc.mod
-rw-r--r-- 1 root root   1640 jul 21 21:28 offsetio.mod
-rw-r--r-- 1 root root  13892 jul 21 21:28 ohci.mod
-rw-r--r-- 1 root root   1932 jul 21 21:28 part_acorn.mod
-rw-r--r-- 1 root root   2068 jul 21 21:28 part_amiga.mod
-rw-r--r-- 1 root root   2352 jul 21 21:28 part_apple.mod
-rw-r--r-- 1 root root   3196 jul 21 21:28 part_bsd.mod
-rw-r--r-- 1 root root   1892 jul 21 21:28 part_dfly.mod
-rw-r--r-- 1 root root   1736 jul 21 21:28 part_dvh.mod
-rw-r--r-- 1 root root   2436 jul 21 21:28 part_gpt.mod
-rw-r--r-- 1 root root    111 jul 21 21:28 partmap.lst
-rw-r--r-- 1 root root   2756 jul 21 21:28 part_msdos.mod
-rw-r--r-- 1 root root   2052 jul 21 21:28 part_plan.mod
-rw-r--r-- 1 root root   1872 jul 21 21:28 part_sun.mod
-rw-r--r-- 1 root root   1916 jul 21 21:28 part_sunpc.mod
-rw-r--r-- 1 root root     17 jul 21 21:28 parttool.lst
-rw-r--r-- 1 root root   5724 jul 21 21:28 parttool.mod
-rw-r--r-- 1 root root   2036 jul 21 21:28 password.mod
-rw-r--r-- 1 root root   3456 jul 21 21:28 password_pbkdf2.mod
-rw-r--r-- 1 root root   6656 jul 21 21:28 pata.mod
-rw-r--r-- 1 root root   1508 jul 21 21:28 pbkdf2.mod
-rw-r--r-- 1 root root   2208 jul 21 21:28 pbkdf2_test.mod
-rw-r--r-- 1 root root   2924 jul 21 21:28 pcidump.mod
-rw-r--r-- 1 root root   1740 jul 21 21:28 pci.mod
-rw-r--r-- 1 root root  14820 jul 21 21:28 pgp.mod
-rw-r--r-- 1 root root   1160 jul 21 21:28 pkcs1_v15.mod
-rw-r--r-- 1 root root   8476 jul 21 21:28 plan9.mod
-rw-r--r-- 1 root root   3168 jul 21 21:28 play.mod
-rw-r--r-- 1 root root  10960 jul 21 21:28 png.mod
-rw-r--r-- 1 root root   2028 jul 21 21:28 priority_queue.mod
-rw-r--r-- 1 root root   4532 jul 21 21:28 probe.mod
-rw-r--r-- 1 root root   2608 jul 21 21:28 procfs.mod
-rw-r--r-- 1 root root   2624 jul 21 21:28 progress.mod
-rw-r--r-- 1 root root   3032 jul 21 21:28 pxechain.mod
-rw-r--r-- 1 root root   4704 jul 21 21:28 pxe.mod
-rw-r--r-- 1 root root   1452 jul 21 21:28 raid5rec.mod
-rw-r--r-- 1 root root   2732 jul 21 21:28 raid6rec.mod
-rw-r--r-- 1 root root   4516 jul 21 21:28 random.mod
-rw-r--r-- 1 root root   2184 jul 21 21:28 rdmsr.mod
-rw-r--r-- 1 root root   1580 jul 21 21:28 read.mod
-rw-r--r-- 1 root root   1992 jul 21 21:28 reboot.mod
-rw-r--r-- 1 root root  87936 jul 21 21:28 regexp.mod
-rw-r--r-- 1 root root  11632 jul 21 21:28 reiserfs.mod
-rw-r--r-- 1 root root  20592 jul 21 21:28 relocator.mod
-rw-r--r-- 1 root root   5432 jul 21 21:28 romfs.mod
-rw-r--r-- 1 root root   6560 jul 21 21:28 scsi.mod
-rw-r--r-- 1 root root   3812 jul 21 21:28 search_fs_file.mod
-rw-r--r-- 1 root root   3924 jul 21 21:28 search_fs_uuid.mod
-rw-r--r-- 1 root root   3812 jul 21 21:28 search_label.mod
-rw-r--r-- 1 root root   4296 jul 21 21:28 search.mod
-rw-r--r-- 1 root root   7904 jul 21 21:28 sendkey.mod
-rw-r--r-- 1 root root  10104 jul 21 21:28 serial.mod
-rw-r--r-- 1 root root    628 jul 21 21:28 setjmp.mod
-rw-r--r-- 1 root root   1692 jul 21 21:28 setjmp_test.mod
-rw-r--r-- 1 root root   6728 jul 21 21:28 setpci.mod
-rw-r--r-- 1 root root   7316 jul 21 21:28 sfs.mod
-rw-r--r-- 1 root root   3088 jul 21 21:28 shift_test.mod
-rw-r--r-- 1 root root   6480 jul 21 21:28 signature_test.mod
-rw-r--r-- 1 root root   2200 jul 21 21:28 sleep.mod
-rw-r--r-- 1 root root   2556 jul 21 21:28 sleep_test.mod
-rw-r--r-- 1 root root   7172 jul 21 21:28 smbios.mod
-rw-r--r-- 1 root root   2340 jul 21 21:28 spkmodem.mod
-rw-r--r-- 1 root root  10164 jul 21 21:28 squash4.mod
-rw-r--r-- 1 root root   2124 jul 21 21:28 strtoull_test.mod
-rw-r--r-- 1 root root  23812 jul 21 21:28 syslinuxcfg.mod
-rw-r--r-- 1 root root   4172 jul 21 21:28 tar.mod
-rw-r--r-- 1 root root    202 jul 21 21:28 terminal.lst
-rw-r--r-- 1 root root   5284 jul 21 21:28 terminal.mod
-rw-r--r-- 1 root root  17368 jul 21 21:28 terminfo.mod
-rw-r--r-- 1 root root  45092 jul 21 21:28 test_asn1.mod
-rw-r--r-- 1 root root   1368 jul 21 21:28 test_blockarg.mod
-rw-r--r-- 1 root root   2928 jul 21 21:28 testload.mod
-rw-r--r-- 1 root root   7512 jul 21 21:28 test.mod
-rw-r--r-- 1 root root   2476 jul 21 21:28 testspeed.mod
-rw-r--r-- 1 root root   6540 jul 21 21:28 tftp.mod
-rw-r--r-- 1 root root   6112 jul 21 21:28 tga.mod
-rw-r--r-- 1 root root   1684 jul 21 21:28 time.mod
-rw-r--r-- 1 root root   1668 jul 21 21:28 trig.mod
-rw-r--r-- 1 root root   2668 jul 21 21:28 tr.mod
-rw-r--r-- 1 root root   4064 jul 21 21:28 truecrypt.mod
-rw-r--r-- 1 root root   1284 jul 21 21:28 true.mod
-rw-r--r-- 1 root root  12312 jul 21 21:28 udf.mod
-rw-r--r-- 1 root root   7396 jul 21 21:28 ufs1_be.mod
-rw-r--r-- 1 root root   7012 jul 21 21:28 ufs1.mod
-rw-r--r-- 1 root root   7044 jul 21 21:28 ufs2.mod
-rw-r--r-- 1 root root   8396 jul 21 21:28 uhci.mod
-rw-r--r-- 1 root root   5124 jul 21 21:28 usb_keyboard.mod
-rw-r--r-- 1 root root  16336 jul 21 21:28 usb.mod
-rw-r--r-- 1 root root   9824 jul 21 21:28 usbms.mod
-rw-r--r-- 1 root root   2396 jul 21 21:28 usbserial_common.mod
-rw-r--r-- 1 root root   2692 jul 21 21:28 usbserial_ftdi.mod
-rw-r--r-- 1 root root   3116 jul 21 21:28 usbserial_pl2303.mod
-rw-r--r-- 1 root root   1556 jul 21 21:28 usbserial_usbdebug.mod
-rw-r--r-- 1 root root   4416 jul 21 21:28 usbtest.mod
-rw-r--r-- 1 root root  12556 jul 21 21:28 vbe.mod
-rw-r--r-- 1 root root   1716 jul 21 21:28 version.mod
-rw-r--r-- 1 root root   5820 jul 21 21:28 vga.mod
-rw-r--r-- 1 root root   2732 jul 21 21:28 vga_text.mod
-rw-r--r-- 1 root root   7936 jul 21 21:28 video_bochs.mod
-rw-r--r-- 1 root root   8888 jul 21 21:28 video_cirrus.mod
-rw-r--r-- 1 root root   6092 jul 21 21:28 video_colors.mod
-rw-r--r-- 1 root root  34100 jul 21 21:28 video_fb.mod
-rw-r--r-- 1 root root   4536 jul 21 21:28 videoinfo.mod
-rw-r--r-- 1 root root     33 jul 21 21:28 video.lst
-rw-r--r-- 1 root root   8396 jul 21 21:28 video.mod
-rw-r--r-- 1 root root   2372 jul 21 21:28 videotest_checksum.mod
-rw-r--r-- 1 root root   4656 jul 21 21:28 videotest.mod
-rw-r--r-- 1 root root   1908 jul 21 21:28 wrmsr.mod
-rw-r--r-- 1 root root  11164 jul 21 21:28 xfs.mod
-rw-r--r-- 1 root root  35980 jul 21 21:28 xnu.mod
-rw-r--r-- 1 root root   2560 jul 21 21:28 xnu_uuid.mod
-rw-r--r-- 1 root root   1972 jul 21 21:28 xnu_uuid_test.mod
-rw-r--r-- 1 root root  25464 jul 21 21:28 xzio.mod
-rw-r--r-- 1 root root   6880 jul 21 21:28 zfscrypt.mod
-rw-r--r-- 1 root root   7224 jul 21 21:28 zfsinfo.mod
-rw-r--r-- 1 root root  56156 jul 21 21:28 zfs.mod
-rw-r--r-- 1 root root  98804 jul 21 21:28 zstd.mod

./grub2/locale:
total 4636
-rw-r--r-- 1 root root 128472 jul 21 21:28 ast.mo
-rw-r--r-- 1 root root 128974 jul 21 21:28 ca.mo
-rw-r--r-- 1 root root 120200 jul 21 21:28 da.mo
-rw-r--r-- 1 root root  38902 jul 21 21:28 de_CH.mo
-rw-r--r-- 1 root root 202735 jul 21 21:28 de@hebrew.mo
-rw-r--r-- 1 root root 134690 jul 21 21:28 de.mo
-rw-r--r-- 1 root root 168627 jul 21 21:28 en@arabic.mo
-rw-r--r-- 1 root root 159227 jul 21 21:28 en@cyrillic.mo
-rw-r--r-- 1 root root 159224 jul 21 21:28 en@greek.mo
-rw-r--r-- 1 root root 182737 jul 21 21:28 en@hebrew.mo
-rw-r--r-- 1 root root 140894 jul 21 21:28 en@piglatin.mo
-rw-r--r-- 1 root root 124316 jul 21 21:28 en@quot.mo
-rw-r--r-- 1 root root  43862 jul 21 21:28 eo.mo
-rw-r--r-- 1 root root 131671 jul 21 21:28 es.mo
-rw-r--r-- 1 root root 133874 jul 21 21:28 fi.mo
-rw-r--r-- 1 root root 141758 jul 21 21:28 fr.mo
-rw-r--r-- 1 root root 103937 jul 21 21:28 gl.mo
-rw-r--r-- 1 root root 131597 jul 21 21:28 hr.mo
-rw-r--r-- 1 root root 132613 jul 21 21:28 hu.mo
-rw-r--r-- 1 root root  28647 jul 21 21:28 id.mo
-rw-r--r-- 1 root root 118172 jul 21 21:28 it.mo
-rw-r--r-- 1 root root  46005 jul 21 21:28 ja.mo
-rw-r--r-- 1 root root  51360 jul 21 21:28 ko.mo
-rw-r--r-- 1 root root   8417 jul 21 21:28 lg.mo
-rw-r--r-- 1 root root 101913 jul 21 21:28 lt.mo
-rw-r--r-- 1 root root 123256 jul 21 21:28 nb.mo
-rw-r--r-- 1 root root 128251 jul 21 21:28 nl.mo
-rw-r--r-- 1 root root  62029 jul 21 21:28 pa.mo
-rw-r--r-- 1 root root 134665 jul 21 21:28 pl.mo
-rw-r--r-- 1 root root  83737 jul 21 21:28 pt_BR.mo
-rw-r--r-- 1 root root 133167 jul 21 21:28 pt.mo
-rw-r--r-- 1 root root  48435 jul 21 21:28 ro.mo
-rw-r--r-- 1 root root 172064 jul 21 21:28 ru.mo
-rw-r--r-- 1 root root  94728 jul 21 21:28 sl.mo
-rw-r--r-- 1 root root 170254 jul 21 21:28 sr.mo
-rw-r--r-- 1 root root 128944 jul 21 21:28 sv.mo
-rw-r--r-- 1 root root  84324 jul 21 21:28 tr.mo
-rw-r--r-- 1 root root 179503 jul 21 21:28 uk.mo
-rw-r--r-- 1 root root 137525 jul 21 21:28 vi.mo
-rw-r--r-- 1 root root  87091 jul 21 21:28 zh_CN.mo
-rw-r--r-- 1 root root  30762 jul 21 21:28 zh_TW.mo

./loader:
total 4
drwx------ 2 root root 4096 ago 19 09:29 entries

./loader/entries:
total 16
-rw-r--r-- 1 root root 416 jul 21 21:28 2ec172ea3465470fa8be3097d46b9c15-0-rescue.conf
-rw-r--r-- 1 root root 339 ago 17 16:37 2ec172ea3465470fa8be3097d46b9c15-6.4.10-200.fc38.x86_64.conf
-rw-r--r-- 1 root root 339 ago 19 09:29 2ec172ea3465470fa8be3097d46b9c15-6.4.11-200.fc38.x86_64.conf
-rw-r--r-- 1 root root 335 ago  9 21:15 2ec172ea3465470fa8be3097d46b9c15-6.4.8-200.fc38.x86_64.conf

sorry for leave you blind
have a nice night/day

@Freakazoid Please say: “Freak in!” and become Dexter again :smiley:

What have you done before? Looks like you did some hard shutdowns
 or did you try to “repair” it? Anyhow
 It is easier to mount it readonly, backup all valuable files and recreate the filesystem in my opinion.

About the menu entries: Remove all unnecessary entries and start over again. Step by step with one entry. Sorry, but I can’t follow here (I am not in front of your pc).

@megavolt jaja sorry, yes i do a btrfs check --repair
ok Sr. I going to delete all menuentrys

  • it’s done, all menuentries from 40_custom deletes
  • the command “mount -t btrfs /dev/nvme0n1p3 /mnt --read-only” is not working (its outputing the same about open_ctree fail error)
  • now i just want to recover at least /home and /etc. If i can mount the nvme0n1p3 its done, i backup my stuff and let it go :smiling_face_with_tear:

if you have an idea, you’re welcome and celebrated. maybe testdisk but its to annoying find one file per one in ausence of names (or maybe i dont know how well to use it) but if i can mount it would be “la creme de la creme” (i know, its bad wrote jaja [or not?] )
that’s it, thanks for all my friend (yes, now, after this you are my cybefriend jaja) thanks for the patience too
see you araund

That would be correct:

mount --types btrfs --options ro,rescue /dev/nvme0n1p3 /mnt

Probably the option usebackuproot helps here with a bad ctree


See this: Administration — BTRFS documentation

In German it is colloquial, meaning depending on the tone and on the context: “Leave me alone” or “I understand” or “Don’t get on my nerves” or “I’m ignoring you now.”. But I see from your writings that you speak Spanish/(Portuguese?), so no problem, it has a different meaning there. :joy:

1 Like

it’s the same (i mean, the output) going to search a little deeper about this new problem and how can “usebackuproot” help me (thanks for the link too)

oh! i undestand so sorry
 but was on a soft tone anyway like you’re my cyberfriend now i can be colloquial (?) jaajjja sorry, was not my intention bothering you neither do a btrfs check --repair like 6 times or more :sweat_smile:

yes i do, im from CL like the beatles and bondiola and old like the time too (so many time and dont know about btrfs file systems :sob: jajan’t)

thanks! have a nice [put the portion of day in here] (jaja)