Initramfs (dracut) and grub2-menuconfig kerenel issue

I have issues generating intramfs on Fedora 40. I manually force-run Dracut with a manual entry to generate, and weirdly, the grub2-menu config generates that I have Alpine and Debian installed… after using only Fedora for more than 3 years on one laptop…

Any suggestion about this weird behaviour?
This is long output of grub2-mkconfig:

(for now manually trigger dracut to generate missing initramfs)
Generating grub configuration file …

#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub2-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
set pager=1

if [ -f ${config_directory}/grubenv ]; then
  load_env -f ${config_directory}/grubenv
elif [ -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
}

terminal_output console
if [ x$feature_timeout_style = xy ] ; then
  set timeout_style=menu
  set timeout=5
# Fallback normal timeout code in case the timeout_style feature is
# unavailable.
else
  set timeout=5
fi
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/01_users ###
if [ -f ${prefix}/user.cfg ]; then
  source ${prefix}/user.cfg
  if [ -n "${GRUB2_PASSWORD}" ]; then
    set superusers="root"
    export superusers
    password_pbkdf2 root ${GRUB2_PASSWORD}
  fi
fi
### END /etc/grub.d/01_users ###

### BEGIN /etc/grub.d/08_fallback_counting ###
insmod increment
# Check if boot_counter exists and boot_success=0 to activate this behaviour.
if [ -n "${boot_counter}" -a "${boot_success}" = "0" ]; then
  # if countdown has ended, choose to boot rollback deployment,
  # i.e. default=1 on OSTree-based systems.
  if  [ "${boot_counter}" = "0" -o "${boot_counter}" = "-1" ]; then
    set default=1
    set boot_counter=-1
  # otherwise decrement boot_counter
  else
    decrement boot_counter
  fi
  save_env boot_counter
fi
### END /etc/grub.d/08_fallback_counting ###

### BEGIN /etc/grub.d/10_linux ###
insmod part_gpt
insmod ext2
search --no-floppy --fs-uuid --set=root db815ca6-2cc6-4296-9fba-e456786a99cd
insmod part_gpt
insmod fat
search --no-floppy --fs-uuid --set=boot 8FDB-E5B3

# This section was generated by a script. Do not modify the generated file - all changes
# will be lost the next time file is regenerated. Instead edit the BootLoaderSpec files.
#
# The blscfg command parses the BootLoaderSpec files stored in /boot/loader/entries and
# populates the boot menu. Please refer to the Boot Loader Specification documentation
# for the files format: https://systemd.io/BOOT_LOADER_SPECIFICATION/.

# The kernelopts variable should be defined in the grubenv file. But to ensure that menu
# entries populated from BootLoaderSpec files that use this variable work correctly even
# without a grubenv file, define a fallback kernelopts variable if this has not been set.
#
# The kernelopts variable in the grubenv file can be modified using the grubby tool or by
# executing the grub2-mkconfig tool. For the latter, the values of the GRUB_CMDLINE_LINUX
# and GRUB_CMDLINE_LINUX_DEFAULT options from /etc/default/grub file are used to set both
# the kernelopts variable in the grubenv file and the fallback kernelopts variable.
if [ -z "${kernelopts}" ]; then
  set kernelopts="root=UUID=0709a601-5cf3-48a4-bd3b-cf78359f8229 ro rootflags=subvol=root rhgb quiet "
fi

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

### BEGIN /etc/grub.d/10_reset_boot_success ###
# Hiding the menu is ok if last boot was ok or if this is a first boot attempt to boot the entry
if [ "${boot_success}" = "1" -o "${boot_indeterminate}" = "1" ]; then
  set menu_hide_ok=1
else
  set menu_hide_ok=0 
fi
# Reset boot_indeterminate after a successful boot
if [ "${boot_success}" = "1" ] ; then
  set boot_indeterminate=0
# Avoid boot_indeterminate causing the menu to be hidden more than once
elif [ "${boot_indeterminate}" = "1" ]; then
  set boot_indeterminate=2
fi
# Reset boot_success for current boot 
set boot_success=0
save_env boot_success boot_indeterminate
### END /etc/grub.d/10_reset_boot_success ###

### BEGIN /etc/grub.d/12_menu_auto_hide ###
if [ x$feature_timeout_style = xy ] ; then
  if [ "${menu_show_once}" ]; then
    unset menu_show_once
    save_env menu_show_once
    set timeout_style=menu
    set timeout=60
  elif [ "${menu_auto_hide}" -a "${menu_hide_ok}" = "1" ]; then
    set orig_timeout_style=${timeout_style}
    set orig_timeout=${timeout}
    if [ "${fastboot}" = "1" ]; then
      # timeout_style=menu + timeout=0 avoids the countdown code keypress check
      set timeout_style=menu
      set timeout=0
    else
      set timeout_style=hidden
      set timeout=1
    fi
  fi
fi
### END /etc/grub.d/12_menu_auto_hide ###

### BEGIN /etc/grub.d/14_menu_show_once ###
if [ x$feature_timeout_style = xy ]; then
  if [ "${menu_show_once_timeout}" ]; then
    set timeout_style=menu
    set timeout="${menu_show_once_timeout}"
    unset menu_show_once_timeout
    save_env menu_show_once_timeout
  fi
fi
### END /etc/grub.d/14_menu_show_once ###

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

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

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

### BEGIN /etc/grub.d/30_os-prober ###
Found Debian GNU/Linux 11 (bullseye) on /dev/nvme0n1p3

Found Alpine Linux v3.15 on /dev/nvme0n1p3

Found Alpine Linux v3.19 on /dev/nvme0n1p3

Found Alpine Linux v3.12 on /dev/nvme0n1p3

Found Debian GNU/Linux 11 (bullseye) on /dev/nvme0n1p3

Found Alpine Linux v3.12 on /dev/nvme0n1p3

Found Alpine Linux v3.18 on /dev/nvme0n1p3

Found Alpine Linux v3.16 on /dev/nvme0n1p3

Found Alpine Linux v3.17 on /dev/nvme0n1p3

Found Alpine Linux v3.18 on /dev/nvme0n1p3

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

### BEGIN /etc/grub.d/30_uefi-firmware ###
Adding boot menu entry for UEFI Firmware Settings ...
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 ###
done

Where is /dev/nvme0n1p3 being mounted?
lsblk -f
mount
sudo tree /boot
All will provide very useful information to answer the question and solve the riddle.

Also, I edited your post to add the preformatted text tags and thus display the on-screen formatting and eliminate the excessive number of bold text lines cause by the beginning “#” characters on those lines.
Preformatted text is available by first pasting the text then hightlight it and click the </> button.
OR
by placing [```] (triple backticks) on the lines preceding the text and following the text.

Disclaimer ( on this disc there was no Debina/Alpina installation)

lsblk -f
NAME        FSTYPE FSVER LABEL                 UUID                                 FSAVAIL FSUSE% MOUNTPOINTS
loop0                                                                                     0   100% /var/lib/snapd/snap/bare/5
loop1                                                                                     0   100% /var/lib/snapd/snap/core/16928
loop2                                                                                     0   100% /var/lib/snapd/snap/core20/2379
loop3                                                                                     0   100% /var/lib/snapd/snap/core/17200
loop4                                                                                     0   100% /var/lib/snapd/snap/core22/1663
loop5                                                                                     0   100% /var/lib/snapd/snap/core20/2434
loop6                                                                                     0   100% /var/lib/snapd/snap/core22/1722
loop7                                                                                     0   100% /var/lib/snapd/snap/gnome-3-38-2004/137
loop8                                                                                     0   100% /var/lib/snapd/snap/gnome-3-38-2004/143
loop9                                                                                     0   100% /var/lib/snapd/snap/gnome-42-2204/176
loop10                                                                                    0   100% /var/lib/snapd/snap/icloud-for-linux/240
loop11                                                                                    0   100% /var/lib/snapd/snap/gtk-common-themes/1535
loop12                                                                                    0   100% /var/lib/snapd/snap/icloud-for-linux/283
loop13                                                                                    0   100% /var/lib/snapd/snap/rhvoice/6
zram0                                                                                              [SWAP]
nvme0n1                                                                                            
├─nvme0n1p1 vfat   FAT32                       8FDB-E5B3                             579,8M     3% /boot/efi
├─nvme0n1p2 ext4   1.0                         db815ca6-2cc6-4296-9fba-e456786a99cd    544M    37% /boot
└─nvme0n1p3 btrfs        fedora_localhost-live 0709a601-5cf3-48a4-bd3b-cf78359f8229     59G    88% /swap
                                                                                                   /home
                                                                                                   /

mount                                                         
/dev/nvme0n1p3 on / type btrfs (rw,relatime,seclabel,compress=zstd:1,ssd,discard=async,space_cache,subvolid=256,subvol=/root)
devtmpfs on /dev type devtmpfs (rw,nosuid,seclabel,size=4096k,nr_inodes=931552,mode=755,inode64)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel,inode64)
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,seclabel,gid=5,mode=620,ptmxmode=000)
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime,seclabel)
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,seclabel,nsdelegate,memory_recursiveprot)
pstore on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime,seclabel)
efivarfs on /sys/firmware/efi/efivars type efivarfs (rw,nosuid,nodev,noexec,relatime)
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
proc on /proc type proc (rw,nosuid,nodev,noexec,relatime)
tmpfs on /run type tmpfs (rw,nosuid,nodev,seclabel,size=1504524k,nr_inodes=819200,mode=755,inode64)
selinuxfs on /sys/fs/selinux type selinuxfs (rw,nosuid,noexec,relatime)
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=8614)
binder on /dev/binderfs type binder (rw,relatime,max=1048576)
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,seclabel,pagesize=2M)
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime,seclabel)
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime,seclabel)
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime,seclabel)
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
/var/lib/snapd/snaps/bare_5.snap on /var/lib/snapd/snap/bare/5 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core_17200.snap on /var/lib/snapd/snap/core/17200 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core_16928.snap on /var/lib/snapd/snap/core/16928 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core20_2379.snap on /var/lib/snapd/snap/core20/2379 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core22_1663.snap on /var/lib/snapd/snap/core22/1663 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core20_2434.snap on /var/lib/snapd/snap/core20/2434 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/core22_1722.snap on /var/lib/snapd/snap/core22/1722 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/gnome-3-38-2004_137.snap on /var/lib/snapd/snap/gnome-3-38-2004/137 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/gnome-3-38-2004_143.snap on /var/lib/snapd/snap/gnome-3-38-2004/143 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/icloud-for-linux_240.snap on /var/lib/snapd/snap/icloud-for-linux/240 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/gnome-42-2204_176.snap on /var/lib/snapd/snap/gnome-42-2204/176 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/gtk-common-themes_1535.snap on /var/lib/snapd/snap/gtk-common-themes/1535 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/icloud-for-linux_283.snap on /var/lib/snapd/snap/icloud-for-linux/283 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/var/lib/snapd/snaps/rhvoice_6.snap on /var/lib/snapd/snap/rhvoice/6 type squashfs (ro,nodev,relatime,context=system_u:object_r:snappy_snap_t:s0,errors=continue,x-gdu.hide,x-gvfs-hide)
/dev/nvme0n1p3 on /home type btrfs (rw,relatime,seclabel,compress=zstd:1,ssd,discard=async,space_cache,subvolid=257,subvol=/home)
/dev/nvme0n1p3 on /swap type btrfs (rw,relatime,seclabel,compress=zstd:1,ssd,discard=async,space_cache,subvolid=446,subvol=/@swap)
/dev/nvme0n1p2 on /boot type ext4 (rw,relatime,seclabel)
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,seclabel,nr_inodes=1048576,inode64)
/dev/nvme0n1p1 on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro)
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
sunrpc on /var/lib/nfs/rpc_pipefs type rpc_pipefs (rw,relatime)
tmpfs on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=752260k,nr_inodes=188065,mode=700,uid=1000,gid=1000,inode64)
gvfsd-fuse on /run/user/1000/gvfs type fuse.gvfsd-fuse (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
portal on /run/user/1000/doc type fuse.portal (rw,nosuid,nodev,relatime,user_id=1000,group_id=1000)
tmpfs on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,size=1504524k,nr_inodes=819200,mode=755,inode64)
nsfs on /run/snapd/ns/rhvoice.mnt type nsfs (rw)

 sudo tree /boot
/boot
├── config-6.12.4-100.fc40.x86_64
├── config-6.12.5-100.fc40.x86_64
├── config-6.12.6-100.fc40.x86_64
├── efi
│   ├── EFI
│   │   ├── BOOT
│   │   │   ├── BOOTIA32.EFI
│   │   │   ├── BOOTX64.EFI
│   │   │   ├── fbia32.efi
│   │   │   └── fbx64.efi
│   │   └── fedora
│   │       ├── BOOTIA32.CSV
│   │       ├── BOOTX64.CSV
│   │       ├── custom.cfg
│   │       ├── gcdia32.efi
│   │       ├── gcdx64.efi
│   │       ├── grub.cfg
│   │       ├── grubia32.efi
│   │       ├── grubx64.efi
│   │       ├── mmia32.efi
│   │       ├── mmx64.efi
│   │       ├── shim.efi
│   │       ├── shimia32.efi
│   │       └── shimx64.efi
│   ├── mach_kernel
│   ├── System
│   │   └── Library
│   │       └── CoreServices
│   │           └── SystemVersion.plist
│   └── System Volume Information
├── extlinux
│   ├── cat.c32
│   ├── chain.c32
│   ├── cmd.c32
│   ├── cmenu.c32
│   ├── config.c32
│   ├── cptime.c32
│   ├── cpu.c32
│   ├── cpuid.c32
│   ├── cpuidtest.c32
│   ├── debug.c32
│   ├── dhcp.c32
│   ├── dir.c32
│   ├── disk.c32
│   ├── dmi.c32
│   ├── dmitest.c32
│   ├── elf.c32
│   ├── ethersel.c32
│   ├── gfxboot.c32
│   ├── gpxecmd.c32
│   ├── hdt.c32
│   ├── hexdump.c32
│   ├── host.c32
│   ├── ifcpu64.c32
│   ├── ifcpu.c32
│   ├── ifmemdsk.c32
│   ├── ifplop.c32
│   ├── kbdmap.c32
│   ├── kontron_wdt.c32
│   ├── ldlinux.c32
│   ├── lfs.c32
│   ├── libcom32.c32
│   ├── libgpl.c32
│   ├── liblua.c32
│   ├── libmenu.c32
│   ├── libutil.c32
│   ├── linux.c32
│   ├── ls.c32
│   ├── lua.c32
│   ├── mboot.c32
│   ├── memdisk
│   ├── meminfo.c32
│   ├── menu.c32
│   ├── pci.c32
│   ├── pcitest.c32
│   ├── pmload.c32
│   ├── poweroff.c32
│   ├── prdhcp.c32
│   ├── pwd.c32
│   ├── pxechn.c32
│   ├── reboot.c32
│   ├── rosh.c32
│   ├── sanboot.c32
│   ├── sdi.c32
│   ├── sysdump.c32
│   ├── syslinux.c32
│   ├── vesa.c32
│   ├── vesainfo.c32
│   ├── vesamenu.c32
│   ├── vpdtest.c32
│   ├── whichsys.c32
│   └── zzjson.c32
├── grub2
│   ├── fonts
│   │   └── unicode.pf2
│   ├── grub.cfg
│   └── grubenv
├── initramfs-0-rescue-2da513ecaec5457795705c1fcda71738.img
├── initramfs-6.12.4-100.fc40.x86_64.img
├── initramfs-6.12.5-100.fc40.x86_64.img
├── initramfs-6.12.6-100.fc40.x86_64.img
├── loader
│   └── entries
│       ├── 2da513ecaec5457795705c1fcda71738-0-rescue.conf
│       ├── 2da513ecaec5457795705c1fcda71738-6.12.4-100.fc40.x86_64.conf
│       ├── 2da513ecaec5457795705c1fcda71738-6.12.5-100.fc40.x86_64.conf
│       └── 2da513ecaec5457795705c1fcda71738-6.12.6-100.fc40.x86_64.conf
├── lost+found
├── System.map-6.12.4-100.fc40.x86_64
├── System.map-6.12.5-100.fc40.x86_64
├── System.map-6.12.6-100.fc40.x86_64
├── vmlinuz-0-rescue-2da513ecaec5457795705c1fcda71738
├── vmlinuz-6.12.4-100.fc40.x86_64
├── vmlinuz-6.12.5-100.fc40.x86_64
└── vmlinuz-6.12.6-100.fc40.x86_64

all missing initramfs I generate by dracut for example::

sudo dracut --force /boot/initramfs-6.12.5-100.fc40.x86_64.img 6.12.5-100.fc40.x86_64

You have 2 files/directories there that are not standard for a modern fedora installation.
‘/boot/efi/mach_kernel’ & ‘/boot/extlinux/’ (which appears to remain from times past when fedora supported a 32 bit kernel)

It appears that /dev/nvme0n1p3 is the btrfs file system containing subvolumes / & /home and one additional that appears to be mounted at /swap?

That one is suspicious as it is mounted and does not appear to actually be swap. It potentially could be the source of the strange entries related to Debian & Alpine. What is the actual content of /swap if you were to run ls /swap?

ls /swap
swapfile
sudo file /swap/swapfile 
/swap/swapfile: Linux swap file, 4k page size, little endian, version 1, size 4194303 pages, 0 bad pages, no label, UUID=ae7b01da-89a6-4599-b35f-e15a6c0bdf30

:thinking:

I am lost now.
If it is actually something in that swapfile then I have no info on how to erase it except to turn off the swap there (using the swapoff command) and run mkswap on that swapfile.

What is shown with the command swapon? Are you using zram as well as the swapfile?

For security you should remember that anything written into a swapfile is for all intents and purposes permanent. Swap into zram is erased when the system is powered off / restarted.

swapon                  
NAME           TYPE      SIZE USED PRIO
/dev/zram0     partition 7,2G 1,4G  100
/swap/swapfile file       16G   0B   -2
free -h                              
               total        used        free      shared  buff/cache   available
Mem:           7,2Gi       3,8Gi       478Mi        25Mi       3,2Gi       3,4Gi
Swap:           23Gi       1,4Gi        21Gi