Kernel panic on boot

When I boot into my Majaro, no matter which of the 2 kernels I use I’m getting a kernel panic. I’m using my TV as a monitor currently but the overscan makes it so I can’t quite make out the first character or two per line. I think the lines begin with [2 but I could be wrong. Here’s a transcription of the error message I did from another computer so there’s likely a typo or two:

nvme0n1p6: clean, 499807/2621440 files. 7613422/10485760 blocks
"init: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: no such file or directory
[2.290172] Kernel panic - not syncing: Attempted to kill init! exitcode=0x00007f00
[2.301519] CPU: 4 PID: 1 comm: init Not tainted 5.10.129-MANJARO #1
[2.301574] Hardware name: Micro-Star International Co., Ltd. MS-7885/8450 GAMING PRO CARBON AC(MS-7885). BIOS 1.F4 04/22/2021
[2.301671] Call Trace:
[2.301696]  dump_stack+0x6b/0x83
[2.301726]  panic_0x108/0x2fc
[2.301753]  do_exit.cold+0x6f/-xb3
[2.301784]  do_group_exit+0x33/0xa0
[2.301815]  __x64_sys_exit_group+0x14/0x20
[2.301851]  do_syscall_64+0x33/0x40
[2.301884]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[2.301927] RIP: 0033:0x7f1fb7d99651
[2.301958] Code: 1f 84 00 00 00 00 00 66 96 f3 0f1e fa be e7 00 00 00 ba 3c 00 00 00 eb 0d 89 d0 0f 05 48 3d 00 f0 ff ff 77 1f f4 89 f0 0f 05 <48> 3d 00 f0 ff ff 76 e7 f7 d8 89 06 ff 3b 01 00 eb dd 0f 1f 44 00
[2.302112] RSP: 002b:00004ffcb8d88e18 EFLAGS: 00000246 ORIG_RAX: 00000000000000e7
[2.302176] RAX: ffffffffffffffda RBX: 00007f1fb7da3588 RCX: 00007f1fb7d99651
[2.302236] RDX: 000000000000003c RSI: 00000000000000e7 RDI: 000000000000007f
[2.302296] RBP: 00007f1fb74e03ff R08: 00004ffcb8d88e28 R09: 00000000b7da0000
[2.302355] R10: 0000000000000020 R11: 0000000000000246 R12: 0000000000000002
[2.302415] R13: 00004f1fb74e0410 R14: 0000000000000011 R15: 0000000000000000
[2.303042] Kernel Offset: 0x9200000 from 0xfffffffff8000000 (relocation range: 0xffffffff80000000-0xffffffffbffffff)
[2.303140] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x00007f00 ]---

This happens whether I boot into any of the following kernels:

Manjaro Linux (Kernel: 5.13.19-2-MANJARO x64)
Manjaro Linux (Kernel: 5.13.19-2-MANJARO x64 - fallback initramfs)
Manjaro Linux (Kernel: 5.18.129-1-MANJARO x64)
Manjaro Linux (Kernel: 5.18.129-1-MANJARO x64 - fallback initramfs)

All your kernels are [EOL] !

chroot, then install a LTS-kernel !

:mag: chroot

How to boot from USB into live Manjaro (for repair):

Please install 2 kernels (one of them LTS)

  • reboot,
  • then remove your EOL-kernels !

When using manjaro you have to stay up to date. You can’t stay with kernels that are [EOL].

  • No that is wrong. You can stay with EOL-kernels. Trouble ahead !
2 Likes

So I’ve booted to a live USB and done manjaro-chroot -a which gave me:

[manjaro@manjaro ~]$ manjaro-chroot -a
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
==> Mounting (ManjaroLinux) [/dev/nvme0n1p6]
 --> mount: [/mnt]
 --> mount: [/mnt/boot/efi]
 --> mount: [/mnt/home]

Then to see what I currently have I did mhwd-kernel -li which output:

6.1.11-1-MANJARO (linux61)
The following kernels are installed in your system:
pacman: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
pacman: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory

to install the newest kernel it looks like LTS is 5.15.94 and stable is 6.1.12 so would I just do:

mhwd-kernel -i linux61

and

mhwd-kernel -i linux515

?

Okay sure enough there is no libcrypto.so.1.1 in /usr/lib/ so I tried downloading openssl-3.0.8-1-x86_64.pkg.tar.zst from the Belnet mirrors but now I’m a little stuck. Since I’m in chroot I have full access to my home distro but I can’t figure out how to navigate to the live media downloads so I can unpackage and then copy the libcrypto.so.1.1 to my desktop’s /usr/bin/. How to I access both from the chroot environment?

I think I have the general approach figured out but want to confirm before I do anything that might further damage my install.

  • download the package that contains libcrypto.so.1.1 (not sure exactly which one that would be but my next best guess is openssl-1.1-1.1.1.t-1-x86_64.pkg.tar.zst) to some directory in my live media
  • Use tar to unpackage that
  • move or copy /usr/bin/libcrypto.so.1.1 (if I understand it right this is the live media’s /usr/bin/) to my desktop’s file system. I’m not 100% sure how to do that, but I think I need to go from outside the chroot environment and copy to the desktop’s filesystem, then chroot into the desktop’s file system and move it to that /usr/bin/
  • update kernel using mhwd-kernel -i linux61 and mhwd-kernel -i linux515
  • exit chroot
  • reboot

Can someone let me know if that’s correct and how I can do the copy from the live media to the filesystem directory outside of the chroot environment?

can you install it from chroot:
pacman -S openssl lib32-openssl
if there are errors post them here

1 Like

it doesn’t seem like I can do anything from chroot directly because pacman depends on libcrypto.so.1.1 but I will confirm shortly

Yeah can’t do that because of the missing libcrypto.so.1.1

[manjaro /]# pacman -S openssl lib32-openssl
pacman: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory

ok, so use external pacman, so first exit chroot:
exit
then run this:

sudo sed -i 's/ trap/#trap/' /usr/lib/manjaro-tools/util-mount.sh
exit | manjaro-chroot -a
sudo pacman --sysroot /mnt -S openssl lib32-openssl --overwrite '*'

then remove the old kernels if you didnt already done it:

sudo pacman --sysroot /mnt -R linux513 linux518

then install the newer kernel:

sudo pacman --sysroot /mnt -S linux515

then rerun update:

sudo pacman --sysroot /mnt -Syu

since you didnt updated your system for some time…
when done, and there were no errors, reboot and see if you can boot normally

1 Like

Got to the part where I install the new kernels and got extensive error messages:

[manjaro@manjaro ~]$ sudo pacman --sysroot /mnt -S linux515
resolving dependencies...
looking for conflicting packages...

Packages (1) linux515-5.15.93-1

Total Download Size:   100.18 MiB
Total Installed Size:  104.67 MiB

:: Proceed with installation? [Y/n] Y
:: Retrieving packages...
 linux515-5.15.93-1-x86_64                                     100.2 MiB  20.3 MiB/s 00:05 [#####################################################] 100%
(1/1) checking keys in keyring                                                             [#####################################################] 100%
(1/1) checking package integrity                                                           [#####################################################] 100%
(1/1) loading package files                                                                [#####################################################] 100%
(1/1) checking for file conflicts                                                          [#####################################################] 100%
(1/1) checking available disk space                                                        [#####################################################] 100%
:: Processing package changes...
(1/1) installing linux515                                                                  [#####################################################] 100%
Optional dependencies for linux515
    wireless-regdb: to set the correct wireless channels of your country [installed]
:: Running post-transaction hooks...
(1/4) Arming ConditionNeedsUpdate...
(2/4) Updating module dependencies...
depmod: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
(3/4) Updating linux initcpios...
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'default'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64.img
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `kmod'
  -> Running build hook: [udev]
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/systemd/systemd-udevd'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/systemd/systemd-udevd'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/systemd-tmpfiles'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/systemd-tmpfiles'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
  -> Running build hook: [autodetect]
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
modprobe: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> ERROR: module not found: `floppy'
==> ERROR: module not found: `null_blk'
==> ERROR: module not found: `rbd'
==> ERROR: module not found: `pktcdvd'
==> ERROR: module not found: `aoe'
==> ERROR: module not found: `loop'
==> ERROR: module not found: `rsxx'
==> ERROR: module not found: `drbd'
==> ERROR: module not found: `xen_blkback'
==> ERROR: module not found: `virtio_blk'
==> ERROR: module not found: `cryptoloop'
==> ERROR: module not found: `sx8'
==> ERROR: module not found: `brd'
==> ERROR: module not found: `nbd'
==> ERROR: module not found: `rnbd_server'
==> ERROR: module not found: `rnbd_client'
==> ERROR: module not found: `mtip32xx'
==> ERROR: module not found: `zram'
==> ERROR: module not found: `xen_blkfront'
==> ERROR: module not found: `esp_scsi'
==> ERROR: module not found: `mpt3sas'
==> ERROR: module not found: `qedi'
==> ERROR: module not found: `cdns_pltfrm'
==> ERROR: module not found: `ufshcd_pci'
==> ERROR: module not found: `ufshcd_core'
==> ERROR: module not found: `ufshcd_pltfrm'
==> ERROR: module not found: `bnx2fc'
==> ERROR: module not found: `hpsa'
==> ERROR: module not found: `hv_storvsc'
==> ERROR: module not found: `fdomain_pci'
==> ERROR: module not found: `snic'
==> ERROR: module not found: `imm'
==> ERROR: module not found: `dc395x'
==> ERROR: module not found: `isci'
==> ERROR: module not found: `myrb'
==> ERROR: module not found: `scsi_dh_rdac'
==> ERROR: module not found: `scsi_dh_hp_sw'
==> ERROR: module not found: `scsi_dh_emc'
==> ERROR: module not found: `scsi_dh_alua'
==> ERROR: module not found: `scsi_transport_spi'
==> ERROR: module not found: `aic7xxx'
==> ERROR: module not found: `aic79xx'
==> ERROR: module not found: `qla4xxx'
==> ERROR: module not found: `hptiop'
==> ERROR: module not found: `atp870u'
==> ERROR: module not found: `efct'
==> ERROR: module not found: `raid_class'
==> ERROR: module not found: `tcm_qla2xxx'
==> ERROR: module not found: `qla2xxx'
==> ERROR: module not found: `sg'
==> ERROR: module not found: `bnx2i'
==> ERROR: module not found: `3w_xxxx'
==> ERROR: module not found: `aic94xx'
==> ERROR: module not found: `libfc'
==> ERROR: module not found: `libiscsi_tcp'
==> ERROR: module not found: `ppa'
==> ERROR: module not found: `scsi_transport_iscsi'
==> ERROR: module not found: `3w_9xxx'
==> ERROR: module not found: `csiostor'
==> ERROR: module not found: `megaraid_mbox'
==> ERROR: module not found: `megaraid_sas'
==> ERROR: module not found: `megaraid_mm'
==> ERROR: module not found: `smartpqi'
==> ERROR: module not found: `BusLogic'
==> ERROR: module not found: `scsi_debug'
==> ERROR: module not found: `qedf'
==> ERROR: module not found: `wd719x'
==> ERROR: module not found: `sym53c8xx'
==> ERROR: module not found: `pm80xx'
==> ERROR: module not found: `fnic'
==> ERROR: module not found: `scsi_transport_sas'
==> ERROR: module not found: `cxgb3i'
==> ERROR: module not found: `cxgb4i'
==> ERROR: module not found: `libcxgbi'
==> ERROR: module not found: `iscsi_tcp'
==> ERROR: module not found: `a100u2w'
==> ERROR: module not found: `mvumi'
==> ERROR: module not found: `ch'
==> ERROR: module not found: `qlogicfas408'
==> ERROR: module not found: `stex'
==> ERROR: module not found: `megaraid'
==> ERROR: module not found: `advansys'
==> ERROR: module not found: `dpt_i2o'
==> ERROR: module not found: `dmx3191d'
==> ERROR: module not found: `xen_scsifront'
==> ERROR: module not found: `vmw_pvscsi'
==> ERROR: module not found: `libfcoe'
==> ERROR: module not found: `fcoe'
==> ERROR: module not found: `bfa'
==> ERROR: module not found: `ipr'
==> ERROR: module not found: `ses'
==> ERROR: module not found: `iscsi_boot_sysfs'
==> ERROR: module not found: `st'
==> ERROR: module not found: `qla1280'
==> ERROR: module not found: `sr_mod'
==> ERROR: module not found: `arcmsr'
==> ERROR: module not found: `pmcraid'
==> ERROR: module not found: `mvsas'
==> ERROR: module not found: `be2iscsi'
==> ERROR: module not found: `ips'
==> ERROR: module not found: `esas2r'
==> ERROR: module not found: `scsi_transport_fc'
==> ERROR: module not found: `initio'
==> ERROR: module not found: `virtio_scsi'
==> ERROR: module not found: `fdomain'
==> ERROR: module not found: `libiscsi'
==> ERROR: module not found: `libsas'
==> ERROR: module not found: `fdomain_cs'
==> ERROR: module not found: `sym53c500_cs'
==> ERROR: module not found: `qlogic_cs'
==> ERROR: module not found: `aha152x_cs'
==> ERROR: module not found: `myrs'
==> ERROR: module not found: `lpfc'
==> ERROR: module not found: `scsi_transport_srp'
==> ERROR: module not found: `mpi3mr'
==> ERROR: module not found: `3w_sas'
==> ERROR: module not found: `am53c974'
==> ERROR: module not found: `aacraid'
==> ERROR: module not found: `nvme_tcp'
==> ERROR: module not found: `nvme_fabrics'
==> ERROR: module not found: `nvme_fc'
==> ERROR: module not found: `nvme_rdma'
==> ERROR: module not found: `nvmet_tcp'
==> ERROR: module not found: `nvme_fcloop'
==> ERROR: module not found: `nvmet_fc'
==> ERROR: module not found: `nvme_loop'
==> ERROR: module not found: `nvmet'
==> ERROR: module not found: `nvmet_rdma'
==> ERROR: module not found: `mptsas'
==> ERROR: module not found: `mptscsih'
==> ERROR: module not found: `mptbase'
==> ERROR: module not found: `mptfc'
==> ERROR: module not found: `mptctl'
==> ERROR: module not found: `mptspi'
==> ERROR: module not found: `mptlan'
==> ERROR: module not found: `pata_optidma'
==> ERROR: module not found: `pata_jmicron'
==> ERROR: module not found: `pata_ns87415'
==> ERROR: module not found: `pata_via'
==> ERROR: module not found: `pata_artop'
==> ERROR: module not found: `sata_dwc_460ex'
==> ERROR: module not found: `pata_pdc2027x'
==> ERROR: module not found: `pata_hpt3x3'
==> ERROR: module not found: `sata_svw'
==> ERROR: module not found: `pata_opti'
==> ERROR: module not found: `sata_qstor'
==> ERROR: module not found: `sata_sil24'
==> ERROR: module not found: `sata_via'
==> ERROR: module not found: `pata_mpiix'
==> ERROR: module not found: `pata_cypress'
==> ERROR: module not found: `pata_ninja32'
==> ERROR: module not found: `sata_vsc'
==> ERROR: module not found: `pata_hpt3x2n'
==> ERROR: module not found: `pata_pcmcia'
==> ERROR: module not found: `pata_marvell'
==> ERROR: module not found: `pata_legacy'
==> ERROR: module not found: `pata_amd'
==> ERROR: module not found: `pata_sl82c105'
==> ERROR: module not found: `pata_cmd640'
==> ERROR: module not found: `pata_pdc202xx_old'
==> ERROR: module not found: `pata_radisys'
==> ERROR: module not found: `sata_sil'
==> ERROR: module not found: `pata_piccolo'
==> ERROR: module not found: `pata_ns87410'
==> ERROR: module not found: `pata_sil680'
==> ERROR: module not found: `pata_acpi'
==> ERROR: module not found: `sata_uli'
==> ERROR: module not found: `pata_efar'
==> ERROR: module not found: `pata_hpt37x'
==> ERROR: module not found: `sata_promise'
==> ERROR: module not found: `pata_netcell'
==> ERROR: module not found: `sata_mv'
==> ERROR: module not found: `pata_oldpiix'
==> ERROR: module not found: `pata_hpt366'
==> ERROR: module not found: `pata_atp867x'
==> ERROR: module not found: `pata_atiixp'
==> ERROR: module not found: `pata_sch'
==> ERROR: module not found: `pata_cmd64x'
==> ERROR: module not found: `pata_triflex'
==> ERROR: module not found: `pata_ali'
==> ERROR: module not found: `sata_nv'
==> ERROR: module not found: `pata_it821x'
==> ERROR: module not found: `sata_sx4'
==> ERROR: module not found: `sata_sis'
==> ERROR: module not found: `pata_it8213'
==> ERROR: module not found: `pata_rz1000'
==> ERROR: module not found: `pata_sis'
==> ERROR: module not found: `sata_inic162x'
==> ERROR: module not found: `pata_serverworks'
==> ERROR: module not found: `pata_rdc'
==> ERROR: module not found: `ata_generic'
==> ERROR: module not found: `ata_piix'
==> ERROR: module not found: `ahci_platform'
==> ERROR: module not found: `pdc_adma'
==> ERROR: module not found: `ohci_platform'
==> ERROR: module not found: `xhci_plat_hcd'
==> ERROR: module not found: `ehci_platform'
==> ERROR: module not found: `bcma_hcd'
==> ERROR: module not found: `xhci_pci'
==> ERROR: module not found: `r8a66597_hcd'
==> ERROR: module not found: `isp116x_hcd'
==> ERROR: module not found: `u132_hcd'
==> ERROR: module not found: `ehci_fsl'
==> ERROR: module not found: `oxu210hp_hcd'
==> ERROR: module not found: `sl811_hcd'
==> ERROR: module not found: `max3421_hcd'
==> ERROR: module not found: `fotg210_hcd'
==> ERROR: module not found: `xhci_pci_renesas'
==> ERROR: module not found: `fsl_mph_dr_of'
==> ERROR: module not found: `ssb_hcd'
==> ERROR: module not found: `ums_usbat'
==> ERROR: module not found: `ums_freecom'
==> ERROR: module not found: `ums_alauda'
==> ERROR: module not found: `ums_cypress'
==> ERROR: module not found: `ums_onetouch'
==> ERROR: module not found: `ums_sddr55'
==> ERROR: module not found: `ums_jumpshot'
==> ERROR: module not found: `uas'
==> ERROR: module not found: `ums_sddr09'
==> ERROR: module not found: `ums_realtek'
==> ERROR: module not found: `ums_isd200'
==> ERROR: module not found: `usb_storage'
==> ERROR: module not found: `ums_eneub6250'
==> ERROR: module not found: `ums_karma'
==> ERROR: module not found: `ums_datafab'
==> ERROR: module not found: `firewire_sbp2'
==> ERROR: module not found: `nosy'
==> ERROR: module not found: `firewire_net'
==> ERROR: module not found: `firewire_core'
==> ERROR: module not found: `firewire_ohci'
==> ERROR: module not found: `mmc_spi'
==> ERROR: module not found: `mtk_sd'
==> ERROR: module not found: `rtsx_pci_sdmmc'
==> ERROR: module not found: `sdhci_pltfm'
==> ERROR: module not found: `cqhci'
==> ERROR: module not found: `alcor'
==> ERROR: module not found: `rtsx_usb_sdmmc'
==> ERROR: module not found: `via_sdmmc'
==> ERROR: module not found: `sdhci_f_sdh30'
==> ERROR: module not found: `sdhci_acpi'
==> ERROR: module not found: `tifm_sd'
==> ERROR: module not found: `ushc'
==> ERROR: module not found: `mmc_hsq'
==> ERROR: module not found: `sdhci_xenon_driver'
==> ERROR: module not found: `of_mmc_spi'
==> ERROR: module not found: `sdhci'
==> ERROR: module not found: `sdricoh_cs'
==> ERROR: module not found: `vub300'
==> ERROR: module not found: `toshsd'
==> ERROR: module not found: `sdhci_pci'
==> ERROR: module not found: `usdhi6rol0'
==> ERROR: module not found: `cb710_mmc'
==> ERROR: module not found: `wbsd'
==> ERROR: module not found: `mmc_test'
==> ERROR: module not found: `mmc_block'
==> ERROR: module not found: `sdio_uart'
==> ERROR: module not found: `mmc_core'
==> ERROR: module not found: `tifm_core'
==> ERROR: module not found: `tifm_7xx1'
==> ERROR: module not found: `tifm_ms'
==> ERROR: module not found: `vmw_vsock_virtio_transport'
==> ERROR: module not found: `vmw_vsock_virtio_transport_common'
==> ERROR: module not found: `9pnet_virtio'
==> ERROR: module not found: `virtiofs'
==> ERROR: module not found: `virtio_snd'
==> ERROR: module not found: `virtio_iommu'
==> ERROR: module not found: `virtio_crypto'
==> ERROR: module not found: `virtio_net'
==> ERROR: module not found: `virtio_blk'
==> ERROR: module not found: `virtio_pmem'
==> ERROR: module not found: `nd_virtio'
==> ERROR: module not found: `virtio_gpu'
==> ERROR: module not found: `virtio_bt'
==> ERROR: module not found: `virtio_pci_modern_dev'
==> ERROR: module not found: `virtio_balloon'
==> ERROR: module not found: `virtio_mmio'
==> ERROR: module not found: `virtio_input'
==> ERROR: module not found: `virtio_mem'
==> ERROR: module not found: `virtio_pci'
==> ERROR: module not found: `virtio_dma_buf'
==> ERROR: module not found: `virtio_vdpa'
==> ERROR: module not found: `virtio_rpmsg_bus'
==> ERROR: module not found: `virtio_scsi'
==> ERROR: module not found: `vp_vdpa'
==> ERROR: module not found: `i2c_virtio'
==> ERROR: module not found: `gpio_virtio'
==> ERROR: module not found: `virtio_rng'
==> ERROR: module not found: `virtio_console'
==> ERROR: module not found: `virtio_pmem'
==> ERROR: module not found: `nd_virtio'
==> ERROR: module not found: `nd_e820'
==> ERROR: module not found: `nd_blk'
==> ERROR: module not found: `nd_pmem'
==> ERROR: module not found: `nd_btt'
==> ERROR: module not found: `mvmdio'
==> ERROR: module not found: `vmd'
  -> Running build hook: [keyboard]
==> ERROR: module not found: `ohci_platform'
==> ERROR: module not found: `xhci_plat_hcd'
==> ERROR: module not found: `ehci_platform'
==> ERROR: module not found: `bcma_hcd'
==> ERROR: module not found: `xhci_pci'
==> ERROR: module not found: `r8a66597_hcd'
==> ERROR: module not found: `isp116x_hcd'
==> ERROR: module not found: `u132_hcd'
==> ERROR: module not found: `ehci_fsl'
==> ERROR: module not found: `oxu210hp_hcd'
==> ERROR: module not found: `sl811_hcd'
==> ERROR: module not found: `max3421_hcd'
==> ERROR: module not found: `fotg210_hcd'
==> ERROR: module not found: `xhci_pci_renesas'
==> ERROR: module not found: `fsl_mph_dr_of'
==> ERROR: module not found: `ssb_hcd'
==> ERROR: module not found: `hid_viewsonic'
==> ERROR: module not found: `hid_roccat_isku'
==> ERROR: module not found: `hid_sensor_hub'
==> ERROR: module not found: `hid_ezkey'
==> ERROR: module not found: `hid_uclogic'
==> ERROR: module not found: `hid_roccat_common'
==> ERROR: module not found: `hid_nti'
==> ERROR: module not found: `hid_logitech_hidpp'
==> ERROR: module not found: `hid_roccat'
==> ERROR: module not found: `hid_roccat_kovaplus'
==> ERROR: module not found: `hid_a4tech'
==> ERROR: module not found: `hid_keytouch'
==> ERROR: module not found: `hid_dr'
==> ERROR: module not found: `hid_speedlink'
==> ERROR: module not found: `hid_elecom'
==> ERROR: module not found: `hid_roccat_koneplus'
==> ERROR: module not found: `hid_alps'
==> ERROR: module not found: `hid_steam'
==> ERROR: module not found: `hid_axff'
==> ERROR: module not found: `hid_lg_g15'
==> ERROR: module not found: `hid_prodikeys'
==> ERROR: module not found: `hid_holtek_mouse'
==> ERROR: module not found: `hid_cp2112'
==> ERROR: module not found: `hid_gfrm'
==> ERROR: module not found: `hid_macally'
==> ERROR: module not found: `hid_multitouch'
==> ERROR: module not found: `hid_roccat_savu'
==> ERROR: module not found: `hid_udraw_ps3'
==> ERROR: module not found: `hid_glorious'
==> ERROR: module not found: `hid_logitech_dj'
==> ERROR: module not found: `hid_wiimote'
==> ERROR: module not found: `hid_twinhan'
==> ERROR: module not found: `hid_roccat_kone'
==> ERROR: module not found: `hid_zpff'
==> ERROR: module not found: `hid_rmi'
==> ERROR: module not found: `hid_waltop'
==> ERROR: module not found: `hid_samsung'
==> ERROR: module not found: `hid_gaff'
==> ERROR: module not found: `hid_sensor_custom'
==> ERROR: module not found: `hid_mcp2221'
==> ERROR: module not found: `hid_saitek'
==> ERROR: module not found: `hid_gyration'
==> ERROR: module not found: `hid_topseed'
==> ERROR: module not found: `hid_elo'
==> ERROR: module not found: `hid_cherry'
==> ERROR: module not found: `hid_semitek'
==> ERROR: module not found: `hid_playstation'
==> ERROR: module not found: `hid_pl'
==> ERROR: module not found: `hid_lcpower'
==> ERROR: module not found: `hid_vivaldi'
==> ERROR: module not found: `hid_ortek'
==> ERROR: module not found: `hid_u2fzero'
==> ERROR: module not found: `hid_led'
==> ERROR: module not found: `hid_thrustmaster'
==> ERROR: module not found: `hid_cougar'
==> ERROR: module not found: `hid_corsair'
==> ERROR: module not found: `hid_gembird'
==> ERROR: module not found: `hid_cypress'
==> ERROR: module not found: `hid_tivo'
==> ERROR: module not found: `hid_roccat_konepure'
==> ERROR: module not found: `hid_microsoft'
==> ERROR: module not found: `hid_redragon'
==> ERROR: module not found: `hid_emsff'
==> ERROR: module not found: `hid_roccat_lua'
==> ERROR: module not found: `hid_accutouch'
==> ERROR: module not found: `hid_magicmouse'
==> ERROR: module not found: `hid_apple'
==> ERROR: module not found: `hid_picolcd'
==> ERROR: module not found: `hid_sunplus'
==> ERROR: module not found: `hid_tmff'
==> ERROR: module not found: `hid_chicony'
==> ERROR: module not found: `hid_roccat_ryos'
==> ERROR: module not found: `hid_aureal'
==> ERROR: module not found: `hid_kye'
==> ERROR: module not found: `hid_appleir'
==> ERROR: module not found: `hid_xinmo'
==> ERROR: module not found: `hid_penmount'
==> ERROR: module not found: `hid_betopff'
==> ERROR: module not found: `hid_elan'
==> ERROR: module not found: `hid_icade'
==> ERROR: module not found: `hid_mf'
==> ERROR: module not found: `hid_primax'
==> ERROR: module not found: `hid_monterey'
==> ERROR: module not found: `hid_creative_sb0540'
==> ERROR: module not found: `hid_kensington'
==> ERROR: module not found: `hid_cmedia'
==> ERROR: module not found: `hid_hyperv'
==> ERROR: module not found: `hid_holtekff'
==> ERROR: module not found: `hid_retrode'
==> ERROR: module not found: `hid_zydacron'
==> ERROR: module not found: `hid_sjoy'
==> ERROR: module not found: `hid_roccat_arvo'
==> ERROR: module not found: `hid_ite'
==> ERROR: module not found: `hid_plantronics'
==> ERROR: module not found: `hid_sony'
==> ERROR: module not found: `hid_jabra'
==> ERROR: module not found: `hid_holtek_kbd'
==> ERROR: module not found: `hid_bigbenff'
==> ERROR: module not found: `hid_petalynx'
==> ERROR: module not found: `hid_ntrig'
==> ERROR: module not found: `hid_asus'
==> ERROR: module not found: `hid_lenovo'
==> ERROR: module not found: `hid_roccat_pyra'
==> ERROR: module not found: `hid_maltron'
==> ERROR: module not found: `hid_google_hammer'
==> ERROR: module not found: `hid_ft260'
==> ERROR: module not found: `hid_logitech'
==> ERROR: module not found: `hid_belkin'
==> ERROR: module not found: `hid_steelseries'
==> ERROR: module not found: `hid_gt683r'
==> ERROR: module not found: `usbhid'
==> ERROR: module not found: `newtonkbd'
==> ERROR: module not found: `applespi'
==> ERROR: module not found: `matrix_keypad'
==> ERROR: module not found: `stowaway'
==> ERROR: module not found: `max7359_keypad'
==> ERROR: module not found: `adc_keys'
==> ERROR: module not found: `iqs62x_keys'
==> ERROR: module not found: `adp5589_keys'
==> ERROR: module not found: `atkbd'
==> ERROR: module not found: `mcs_touchkey'
==> ERROR: module not found: `qt1070'
==> ERROR: module not found: `qt1050'
==> ERROR: module not found: `lm8323'
==> ERROR: module not found: `opencores_kbd'
==> ERROR: module not found: `gpio_keys_polled'
==> ERROR: module not found: `lm8333'
==> ERROR: module not found: `gpio_keys'
==> ERROR: module not found: `sunkbd'
==> ERROR: module not found: `tca8418_keypad'
==> ERROR: module not found: `dlink_dir685_touchkeys'
==> ERROR: module not found: `adp5588_keys'
==> ERROR: module not found: `xtkbd'
==> ERROR: module not found: `cros_ec_keyb'
==> ERROR: module not found: `qt2160'
==> ERROR: module not found: `samsung_keypad'
==> ERROR: module not found: `twl4030_keypad'
==> ERROR: module not found: `tm2_touchkey'
==> ERROR: module not found: `mtk_pmic_keys'
==> ERROR: module not found: `lkkbd'
==> ERROR: module not found: `mpr121_touchkey'
==> ERROR: module not found: `adp5520_keys'
==> ERROR: module not found: `tca6416_keypad'
==> ERROR: module not found: `parkbd'
==> ERROR: module not found: `libps2'
==> ERROR: module not found: `ps2_gpio'
==> ERROR: module not found: `ps2mult'
==> ERROR: module not found: `serio'
==> ERROR: module not found: `serport'
==> ERROR: module not found: `serio_raw'
==> ERROR: module not found: `pcips2'
==> ERROR: module not found: `altera_ps2'
==> ERROR: module not found: `ct82c710'
==> ERROR: module not found: `arc_ps2'
==> ERROR: module not found: `userio'
==> ERROR: module not found: `i8042'
==> ERROR: module not found: `hyperv_keyboard'
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
==> ERROR: module not found: `jbd2'
==> ERROR: module not found: `nfsv3'
==> ERROR: module not found: `blocklayoutdriver'
==> ERROR: module not found: `nfs'
==> ERROR: module not found: `nfs_layout_nfsv41_files'
==> ERROR: module not found: `nfs_layout_flexfiles'
==> ERROR: module not found: `nfsv4'
==> ERROR: module not found: `nfsv2'
==> ERROR: module not found: `quota_tree'
==> ERROR: module not found: `quota_v2'
==> ERROR: module not found: `quota_v1'
==> ERROR: module not found: `cramfs'
==> ERROR: module not found: `affs'
==> ERROR: module not found: `orangefs'
==> ERROR: module not found: `jffs2'
==> ERROR: module not found: `vboxsf'
==> ERROR: module not found: `fscache'
==> ERROR: module not found: `ufs'
==> ERROR: module not found: `ubifs'
==> ERROR: module not found: `cuse'
==> ERROR: module not found: `fuse'
==> ERROR: module not found: `virtiofs'
==> ERROR: module not found: `btrfs'
==> ERROR: module not found: `exfat'
==> ERROR: module not found: `ecryptfs'
==> ERROR: module not found: `cifs'
==> ERROR: module not found: `befs'
==> ERROR: module not found: `ksmbd'
==> ERROR: module not found: `mbcache'
==> ERROR: module not found: `f2fs'
==> ERROR: module not found: `udf'
==> ERROR: module not found: `ntfs3'
==> ERROR: module not found: `overlay'
==> ERROR: module not found: `cachefiles'
==> ERROR: module not found: `ext4'
==> ERROR: module not found: `kafs'
==> ERROR: module not found: `nilfs2'
==> ERROR: module not found: `ramoops'
==> ERROR: module not found: `fat'
==> ERROR: module not found: `vfat'
==> ERROR: module not found: `msdos'
==> ERROR: module not found: `omfs'
==> ERROR: module not found: `isofs'
==> ERROR: module not found: `coda'
==> ERROR: module not found: `netfs'
==> ERROR: module not found: `hfs'
==> ERROR: module not found: `romfs'
==> ERROR: module not found: `lockd'
==> ERROR: module not found: `squashfs'
==> ERROR: module not found: `reiserfs'
==> ERROR: module not found: `dlm'
==> ERROR: module not found: `cifs_arc4'
==> ERROR: module not found: `cifs_md4'
==> ERROR: module not found: `hfsplus'
==> ERROR: module not found: `grace'
==> ERROR: module not found: `nfs_acl'
==> ERROR: module not found: `zonefs'
==> ERROR: module not found: `ceph'
==> ERROR: module not found: `nfsd'
==> ERROR: module not found: `ocfs2_stack_o2cb'
==> ERROR: module not found: `ocfs2_dlmfs'
==> ERROR: module not found: `ocfs2_dlm'
==> ERROR: module not found: `ocfs2_stack_user'
==> ERROR: module not found: `ocfs2_nodemanager'
==> ERROR: module not found: `ocfs2_stackglue'
==> ERROR: module not found: `ocfs2'
==> ERROR: module not found: `gfs2'
==> ERROR: module not found: `minix'
==> ERROR: module not found: `xfs'
==> ERROR: module not found: `jfs'
==> ERROR: module not found: `erofs'
==> ERROR: module not found: `9p'
  -> Running build hook: [fsck]
==> WARNING: No modules were added to the image. This is probably not what you want.
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64.img
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
bsdtar: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
bsdtar: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
==> WARNING: errors were encountered during the build. The image may not be complete.
==> ERROR: Image generation FAILED: find reported an error
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'fallback'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64-fallback.img -S autodetect
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `kmod'
  -> Running build hook: [udev]
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/systemd/systemd-udevd'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/systemd/systemd-udevd'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/systemd-tmpfiles'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/systemd-tmpfiles'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/ata_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/lib/udev/scsi_id'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
==> ERROR: binary dependency `libcrypto.so.1.1' not found for `/usr/bin/udevadm'
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> ERROR: module not found: `floppy'
==> ERROR: module not found: `null_blk'
==> ERROR: module not found: `rbd'
==> ERROR: module not found: `pktcdvd'
==> ERROR: module not found: `aoe'
==> ERROR: module not found: `loop'
==> ERROR: module not found: `rsxx'
==> ERROR: module not found: `drbd'
==> ERROR: module not found: `xen_blkback'
==> ERROR: module not found: `virtio_blk'
==> ERROR: module not found: `cryptoloop'
==> ERROR: module not found: `sx8'
==> ERROR: module not found: `brd'
==> ERROR: module not found: `nbd'
==> ERROR: module not found: `rnbd_server'
==> ERROR: module not found: `rnbd_client'
==> ERROR: module not found: `mtip32xx'
==> ERROR: module not found: `zram'
==> ERROR: module not found: `xen_blkfront'
==> ERROR: module not found: `esp_scsi'
==> ERROR: module not found: `mpt3sas'
==> ERROR: module not found: `qedi'
==> ERROR: module not found: `cdns_pltfrm'
==> ERROR: module not found: `ufshcd_pci'
==> ERROR: module not found: `ufshcd_core'
==> ERROR: module not found: `ufshcd_pltfrm'
==> ERROR: module not found: `bnx2fc'
==> ERROR: module not found: `hpsa'
==> ERROR: module not found: `hv_storvsc'
==> ERROR: module not found: `fdomain_pci'
==> ERROR: module not found: `snic'
==> ERROR: module not found: `imm'
==> ERROR: module not found: `dc395x'
==> ERROR: module not found: `isci'
==> ERROR: module not found: `myrb'
==> ERROR: module not found: `scsi_dh_rdac'
==> ERROR: module not found: `scsi_dh_hp_sw'
==> ERROR: module not found: `scsi_dh_emc'
==> ERROR: module not found: `scsi_dh_alua'
==> ERROR: module not found: `scsi_transport_spi'
==> ERROR: module not found: `aic7xxx'
==> ERROR: module not found: `aic79xx'
==> ERROR: module not found: `qla4xxx'
==> ERROR: module not found: `hptiop'
==> ERROR: module not found: `atp870u'
==> ERROR: module not found: `efct'
==> ERROR: module not found: `raid_class'
==> ERROR: module not found: `tcm_qla2xxx'
==> ERROR: module not found: `qla2xxx'
==> ERROR: module not found: `sg'
==> ERROR: module not found: `bnx2i'
==> ERROR: module not found: `3w_xxxx'
==> ERROR: module not found: `aic94xx'
==> ERROR: module not found: `libfc'
==> ERROR: module not found: `libiscsi_tcp'
==> ERROR: module not found: `ppa'
==> ERROR: module not found: `scsi_transport_iscsi'
==> ERROR: module not found: `3w_9xxx'
==> ERROR: module not found: `csiostor'
==> ERROR: module not found: `megaraid_mbox'
==> ERROR: module not found: `megaraid_sas'
==> ERROR: module not found: `megaraid_mm'
==> ERROR: module not found: `smartpqi'
==> ERROR: module not found: `BusLogic'
==> ERROR: module not found: `scsi_debug'
==> ERROR: module not found: `qedf'
==> ERROR: module not found: `wd719x'
==> ERROR: module not found: `sym53c8xx'
==> ERROR: module not found: `pm80xx'
==> ERROR: module not found: `fnic'
==> ERROR: module not found: `scsi_transport_sas'
==> ERROR: module not found: `cxgb3i'
==> ERROR: module not found: `cxgb4i'
==> ERROR: module not found: `libcxgbi'
==> ERROR: module not found: `iscsi_tcp'
==> ERROR: module not found: `a100u2w'
==> ERROR: module not found: `mvumi'
==> ERROR: module not found: `ch'
==> ERROR: module not found: `qlogicfas408'
==> ERROR: module not found: `stex'
==> ERROR: module not found: `megaraid'
==> ERROR: module not found: `advansys'
==> ERROR: module not found: `dpt_i2o'
==> ERROR: module not found: `dmx3191d'
==> ERROR: module not found: `xen_scsifront'
==> ERROR: module not found: `vmw_pvscsi'
==> ERROR: module not found: `libfcoe'
==> ERROR: module not found: `fcoe'
==> ERROR: module not found: `bfa'
==> ERROR: module not found: `ipr'
==> ERROR: module not found: `ses'
==> ERROR: module not found: `iscsi_boot_sysfs'
==> ERROR: module not found: `st'
==> ERROR: module not found: `qla1280'
==> ERROR: module not found: `sr_mod'
==> ERROR: module not found: `arcmsr'
==> ERROR: module not found: `pmcraid'
==> ERROR: module not found: `mvsas'
==> ERROR: module not found: `be2iscsi'
==> ERROR: module not found: `ips'
==> ERROR: module not found: `esas2r'
==> ERROR: module not found: `scsi_transport_fc'
==> ERROR: module not found: `initio'
==> ERROR: module not found: `virtio_scsi'
==> ERROR: module not found: `fdomain'
==> ERROR: module not found: `libiscsi'
==> ERROR: module not found: `libsas'
==> ERROR: module not found: `fdomain_cs'
==> ERROR: module not found: `sym53c500_cs'
==> ERROR: module not found: `qlogic_cs'
==> ERROR: module not found: `aha152x_cs'
==> ERROR: module not found: `myrs'
==> ERROR: module not found: `lpfc'
==> ERROR: module not found: `scsi_transport_srp'
==> ERROR: module not found: `mpi3mr'
==> ERROR: module not found: `3w_sas'
==> ERROR: module not found: `am53c974'
==> ERROR: module not found: `aacraid'
==> ERROR: module not found: `nvme_tcp'
==> ERROR: module not found: `nvme_fabrics'
==> ERROR: module not found: `nvme_fc'
==> ERROR: module not found: `nvme_rdma'
==> ERROR: module not found: `nvmet_tcp'
==> ERROR: module not found: `nvme_fcloop'
==> ERROR: module not found: `nvmet_fc'
==> ERROR: module not found: `nvme_loop'
==> ERROR: module not found: `nvmet'
==> ERROR: module not found: `nvmet_rdma'
==> ERROR: module not found: `mptsas'
==> ERROR: module not found: `mptscsih'
==> ERROR: module not found: `mptbase'
==> ERROR: module not found: `mptfc'
==> ERROR: module not found: `mptctl'
==> ERROR: module not found: `mptspi'
==> ERROR: module not found: `mptlan'
==> ERROR: module not found: `pata_optidma'
==> ERROR: module not found: `pata_jmicron'
==> ERROR: module not found: `pata_ns87415'
==> ERROR: module not found: `pata_via'
==> ERROR: module not found: `pata_artop'
==> ERROR: module not found: `sata_dwc_460ex'
==> ERROR: module not found: `pata_pdc2027x'
==> ERROR: module not found: `pata_hpt3x3'
==> ERROR: module not found: `sata_svw'
==> ERROR: module not found: `pata_opti'
==> ERROR: module not found: `sata_qstor'
==> ERROR: module not found: `sata_sil24'
==> ERROR: module not found: `sata_via'
==> ERROR: module not found: `pata_mpiix'
==> ERROR: module not found: `pata_cypress'
==> ERROR: module not found: `pata_ninja32'
==> ERROR: module not found: `sata_vsc'
==> ERROR: module not found: `pata_hpt3x2n'
==> ERROR: module not found: `pata_pcmcia'
==> ERROR: module not found: `pata_marvell'
==> ERROR: module not found: `pata_legacy'
==> ERROR: module not found: `pata_amd'
==> ERROR: module not found: `pata_sl82c105'
==> ERROR: module not found: `pata_cmd640'
==> ERROR: module not found: `pata_pdc202xx_old'
==> ERROR: module not found: `pata_radisys'
==> ERROR: module not found: `sata_sil'
==> ERROR: module not found: `pata_piccolo'
==> ERROR: module not found: `pata_ns87410'
==> ERROR: module not found: `pata_sil680'
==> ERROR: module not found: `pata_acpi'
==> ERROR: module not found: `sata_uli'
==> ERROR: module not found: `pata_efar'
==> ERROR: module not found: `pata_hpt37x'
==> ERROR: module not found: `sata_promise'
==> ERROR: module not found: `pata_netcell'
==> ERROR: module not found: `sata_mv'
==> ERROR: module not found: `pata_oldpiix'
==> ERROR: module not found: `pata_hpt366'
==> ERROR: module not found: `pata_atp867x'
==> ERROR: module not found: `pata_atiixp'
==> ERROR: module not found: `pata_sch'
==> ERROR: module not found: `pata_cmd64x'
==> ERROR: module not found: `pata_triflex'
==> ERROR: module not found: `pata_ali'
==> ERROR: module not found: `sata_nv'
==> ERROR: module not found: `pata_it821x'
==> ERROR: module not found: `sata_sx4'
==> ERROR: module not found: `sata_sis'
==> ERROR: module not found: `pata_it8213'
==> ERROR: module not found: `pata_rz1000'
==> ERROR: module not found: `pata_sis'
==> ERROR: module not found: `sata_inic162x'
==> ERROR: module not found: `pata_serverworks'
==> ERROR: module not found: `pata_rdc'
==> ERROR: module not found: `ata_generic'
==> ERROR: module not found: `ata_piix'
==> ERROR: module not found: `ahci_platform'
==> ERROR: module not found: `pdc_adma'
==> ERROR: module not found: `ohci_platform'
==> ERROR: module not found: `xhci_plat_hcd'
==> ERROR: module not found: `ehci_platform'
==> ERROR: module not found: `bcma_hcd'
==> ERROR: module not found: `xhci_pci'
==> ERROR: module not found: `r8a66597_hcd'
==> ERROR: module not found: `isp116x_hcd'
==> ERROR: module not found: `u132_hcd'
==> ERROR: module not found: `ehci_fsl'
==> ERROR: module not found: `oxu210hp_hcd'
==> ERROR: module not found: `sl811_hcd'
==> ERROR: module not found: `max3421_hcd'
==> ERROR: module not found: `fotg210_hcd'
==> ERROR: module not found: `xhci_pci_renesas'
==> ERROR: module not found: `fsl_mph_dr_of'
==> ERROR: module not found: `ssb_hcd'
==> ERROR: module not found: `ums_usbat'
==> ERROR: module not found: `ums_freecom'
==> ERROR: module not found: `ums_alauda'
==> ERROR: module not found: `ums_cypress'
==> ERROR: module not found: `ums_onetouch'
==> ERROR: module not found: `ums_sddr55'
==> ERROR: module not found: `ums_jumpshot'
==> ERROR: module not found: `uas'
==> ERROR: module not found: `ums_sddr09'
==> ERROR: module not found: `ums_realtek'
==> ERROR: module not found: `ums_isd200'
==> ERROR: module not found: `usb_storage'
==> ERROR: module not found: `ums_eneub6250'
==> ERROR: module not found: `ums_karma'
==> ERROR: module not found: `ums_datafab'
==> ERROR: module not found: `firewire_sbp2'
==> ERROR: module not found: `nosy'
==> ERROR: module not found: `firewire_net'
==> ERROR: module not found: `firewire_core'
==> ERROR: module not found: `firewire_ohci'
==> ERROR: module not found: `mmc_spi'
==> ERROR: module not found: `mtk_sd'
==> ERROR: module not found: `rtsx_pci_sdmmc'
==> ERROR: module not found: `sdhci_pltfm'
==> ERROR: module not found: `cqhci'
==> ERROR: module not found: `alcor'
==> ERROR: module not found: `rtsx_usb_sdmmc'
==> ERROR: module not found: `via_sdmmc'
==> ERROR: module not found: `sdhci_f_sdh30'
==> ERROR: module not found: `sdhci_acpi'
==> ERROR: module not found: `tifm_sd'
==> ERROR: module not found: `ushc'
==> ERROR: module not found: `mmc_hsq'
==> ERROR: module not found: `sdhci_xenon_driver'
==> ERROR: module not found: `of_mmc_spi'
==> ERROR: module not found: `sdhci'
==> ERROR: module not found: `sdricoh_cs'
==> ERROR: module not found: `vub300'
==> ERROR: module not found: `toshsd'
==> ERROR: module not found: `sdhci_pci'
==> ERROR: module not found: `usdhi6rol0'
==> ERROR: module not found: `cb710_mmc'
==> ERROR: module not found: `wbsd'
==> ERROR: module not found: `mmc_test'
==> ERROR: module not found: `mmc_block'
==> ERROR: module not found: `sdio_uart'
==> ERROR: module not found: `mmc_core'
==> ERROR: module not found: `tifm_core'
==> ERROR: module not found: `tifm_7xx1'
==> ERROR: module not found: `tifm_ms'
==> ERROR: module not found: `vmw_vsock_virtio_transport'
==> ERROR: module not found: `vmw_vsock_virtio_transport_common'
==> ERROR: module not found: `9pnet_virtio'
==> ERROR: module not found: `virtiofs'
==> ERROR: module not found: `virtio_snd'
==> ERROR: module not found: `virtio_iommu'
==> ERROR: module not found: `virtio_crypto'
==> ERROR: module not found: `virtio_net'
==> ERROR: module not found: `virtio_blk'
==> ERROR: module not found: `virtio_pmem'
==> ERROR: module not found: `nd_virtio'
==> ERROR: module not found: `virtio_gpu'
==> ERROR: module not found: `virtio_bt'
==> ERROR: module not found: `virtio_pci_modern_dev'
==> ERROR: module not found: `virtio_balloon'
==> ERROR: module not found: `virtio_mmio'
==> ERROR: module not found: `virtio_input'
==> ERROR: module not found: `virtio_mem'
==> ERROR: module not found: `virtio_pci'
==> ERROR: module not found: `virtio_dma_buf'
==> ERROR: module not found: `virtio_vdpa'
==> ERROR: module not found: `virtio_rpmsg_bus'
==> ERROR: module not found: `virtio_scsi'
==> ERROR: module not found: `vp_vdpa'
==> ERROR: module not found: `i2c_virtio'
==> ERROR: module not found: `gpio_virtio'
==> ERROR: module not found: `virtio_rng'
==> ERROR: module not found: `virtio_console'
==> ERROR: module not found: `virtio_pmem'
==> ERROR: module not found: `nd_virtio'
==> ERROR: module not found: `nd_e820'
==> ERROR: module not found: `nd_blk'
==> ERROR: module not found: `nd_pmem'
==> ERROR: module not found: `nd_btt'
==> ERROR: module not found: `mvmdio'
==> ERROR: module not found: `vmd'
  -> Running build hook: [keyboard]
==> ERROR: module not found: `ohci_platform'
==> ERROR: module not found: `xhci_plat_hcd'
==> ERROR: module not found: `ehci_platform'
==> ERROR: module not found: `bcma_hcd'
==> ERROR: module not found: `xhci_pci'
==> ERROR: module not found: `r8a66597_hcd'
==> ERROR: module not found: `isp116x_hcd'
==> ERROR: module not found: `u132_hcd'
==> ERROR: module not found: `ehci_fsl'
==> ERROR: module not found: `oxu210hp_hcd'
==> ERROR: module not found: `sl811_hcd'
==> ERROR: module not found: `max3421_hcd'
==> ERROR: module not found: `fotg210_hcd'
==> ERROR: module not found: `xhci_pci_renesas'
==> ERROR: module not found: `fsl_mph_dr_of'
==> ERROR: module not found: `ssb_hcd'
==> ERROR: module not found: `hid_viewsonic'
==> ERROR: module not found: `hid_roccat_isku'
==> ERROR: module not found: `hid_sensor_hub'
==> ERROR: module not found: `hid_ezkey'
==> ERROR: module not found: `hid_uclogic'
==> ERROR: module not found: `hid_roccat_common'
==> ERROR: module not found: `hid_nti'
==> ERROR: module not found: `hid_logitech_hidpp'
==> ERROR: module not found: `hid_roccat'
==> ERROR: module not found: `hid_roccat_kovaplus'
==> ERROR: module not found: `hid_a4tech'
==> ERROR: module not found: `hid_keytouch'
==> ERROR: module not found: `hid_dr'
==> ERROR: module not found: `hid_speedlink'
==> ERROR: module not found: `hid_elecom'
==> ERROR: module not found: `hid_roccat_koneplus'
==> ERROR: module not found: `hid_alps'
==> ERROR: module not found: `hid_steam'
==> ERROR: module not found: `hid_axff'
==> ERROR: module not found: `hid_lg_g15'
==> ERROR: module not found: `hid_prodikeys'
==> ERROR: module not found: `hid_holtek_mouse'
==> ERROR: module not found: `hid_cp2112'
==> ERROR: module not found: `hid_gfrm'
==> ERROR: module not found: `hid_macally'
==> ERROR: module not found: `hid_multitouch'
==> ERROR: module not found: `hid_roccat_savu'
==> ERROR: module not found: `hid_udraw_ps3'
==> ERROR: module not found: `hid_glorious'
==> ERROR: module not found: `hid_logitech_dj'
==> ERROR: module not found: `hid_wiimote'
==> ERROR: module not found: `hid_twinhan'
==> ERROR: module not found: `hid_roccat_kone'
==> ERROR: module not found: `hid_zpff'
==> ERROR: module not found: `hid_rmi'
==> ERROR: module not found: `hid_waltop'
==> ERROR: module not found: `hid_samsung'
==> ERROR: module not found: `hid_gaff'
==> ERROR: module not found: `hid_sensor_custom'
==> ERROR: module not found: `hid_mcp2221'
==> ERROR: module not found: `hid_saitek'
==> ERROR: module not found: `hid_gyration'
==> ERROR: module not found: `hid_topseed'
==> ERROR: module not found: `hid_elo'
==> ERROR: module not found: `hid_cherry'
==> ERROR: module not found: `hid_semitek'
==> ERROR: module not found: `hid_playstation'
==> ERROR: module not found: `hid_pl'
==> ERROR: module not found: `hid_lcpower'
==> ERROR: module not found: `hid_vivaldi'
==> ERROR: module not found: `hid_ortek'
==> ERROR: module not found: `hid_u2fzero'
==> ERROR: module not found: `hid_led'
==> ERROR: module not found: `hid_thrustmaster'
==> ERROR: module not found: `hid_cougar'
==> ERROR: module not found: `hid_corsair'
==> ERROR: module not found: `hid_gembird'
==> ERROR: module not found: `hid_cypress'
==> ERROR: module not found: `hid_tivo'
==> ERROR: module not found: `hid_roccat_konepure'
==> ERROR: module not found: `hid_microsoft'
==> ERROR: module not found: `hid_redragon'
==> ERROR: module not found: `hid_emsff'
==> ERROR: module not found: `hid_roccat_lua'
==> ERROR: module not found: `hid_accutouch'
==> ERROR: module not found: `hid_magicmouse'
==> ERROR: module not found: `hid_apple'
==> ERROR: module not found: `hid_picolcd'
==> ERROR: module not found: `hid_sunplus'
==> ERROR: module not found: `hid_tmff'
==> ERROR: module not found: `hid_chicony'
==> ERROR: module not found: `hid_roccat_ryos'
==> ERROR: module not found: `hid_aureal'
==> ERROR: module not found: `hid_kye'
==> ERROR: module not found: `hid_appleir'
==> ERROR: module not found: `hid_xinmo'
==> ERROR: module not found: `hid_penmount'
==> ERROR: module not found: `hid_betopff'
==> ERROR: module not found: `hid_elan'
==> ERROR: module not found: `hid_icade'
==> ERROR: module not found: `hid_mf'
==> ERROR: module not found: `hid_primax'
==> ERROR: module not found: `hid_monterey'
==> ERROR: module not found: `hid_creative_sb0540'
==> ERROR: module not found: `hid_kensington'
==> ERROR: module not found: `hid_cmedia'
==> ERROR: module not found: `hid_hyperv'
==> ERROR: module not found: `hid_holtekff'
==> ERROR: module not found: `hid_retrode'
==> ERROR: module not found: `hid_zydacron'
==> ERROR: module not found: `hid_sjoy'
==> ERROR: module not found: `hid_roccat_arvo'
==> ERROR: module not found: `hid_ite'
==> ERROR: module not found: `hid_plantronics'
==> ERROR: module not found: `hid_sony'
==> ERROR: module not found: `hid_jabra'
==> ERROR: module not found: `hid_holtek_kbd'
==> ERROR: module not found: `hid_bigbenff'
==> ERROR: module not found: `hid_petalynx'
==> ERROR: module not found: `hid_ntrig'
==> ERROR: module not found: `hid_asus'
==> ERROR: module not found: `hid_lenovo'
==> ERROR: module not found: `hid_roccat_pyra'
==> ERROR: module not found: `hid_maltron'
==> ERROR: module not found: `hid_google_hammer'
==> ERROR: module not found: `hid_ft260'
==> ERROR: module not found: `hid_logitech'
==> ERROR: module not found: `hid_belkin'
==> ERROR: module not found: `hid_steelseries'
==> ERROR: module not found: `hid_gt683r'
==> ERROR: module not found: `usbhid'
==> ERROR: module not found: `newtonkbd'
==> ERROR: module not found: `applespi'
==> ERROR: module not found: `matrix_keypad'
==> ERROR: module not found: `stowaway'
==> ERROR: module not found: `max7359_keypad'
==> ERROR: module not found: `adc_keys'
==> ERROR: module not found: `iqs62x_keys'
==> ERROR: module not found: `adp5589_keys'
==> ERROR: module not found: `atkbd'
==> ERROR: module not found: `mcs_touchkey'
==> ERROR: module not found: `qt1070'
==> ERROR: module not found: `qt1050'
==> ERROR: module not found: `lm8323'
==> ERROR: module not found: `opencores_kbd'
==> ERROR: module not found: `gpio_keys_polled'
==> ERROR: module not found: `lm8333'
==> ERROR: module not found: `gpio_keys'
==> ERROR: module not found: `sunkbd'
==> ERROR: module not found: `tca8418_keypad'
==> ERROR: module not found: `dlink_dir685_touchkeys'
==> ERROR: module not found: `adp5588_keys'
==> ERROR: module not found: `xtkbd'
==> ERROR: module not found: `cros_ec_keyb'
==> ERROR: module not found: `qt2160'
==> ERROR: module not found: `samsung_keypad'
==> ERROR: module not found: `twl4030_keypad'
==> ERROR: module not found: `tm2_touchkey'
==> ERROR: module not found: `mtk_pmic_keys'
==> ERROR: module not found: `lkkbd'
==> ERROR: module not found: `mpr121_touchkey'
==> ERROR: module not found: `adp5520_keys'
==> ERROR: module not found: `tca6416_keypad'
==> ERROR: module not found: `parkbd'
==> ERROR: module not found: `libps2'
==> ERROR: module not found: `ps2_gpio'
==> ERROR: module not found: `ps2mult'
==> ERROR: module not found: `serio'
==> ERROR: module not found: `serport'
==> ERROR: module not found: `serio_raw'
==> ERROR: module not found: `pcips2'
==> ERROR: module not found: `altera_ps2'
==> ERROR: module not found: `ct82c710'
==> ERROR: module not found: `arc_ps2'
==> ERROR: module not found: `userio'
==> ERROR: module not found: `i8042'
==> ERROR: module not found: `hyperv_keyboard'
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
==> ERROR: module not found: `jbd2'
==> ERROR: module not found: `nfsv3'
==> ERROR: module not found: `blocklayoutdriver'
==> ERROR: module not found: `nfs'
==> ERROR: module not found: `nfs_layout_nfsv41_files'
==> ERROR: module not found: `nfs_layout_flexfiles'
==> ERROR: module not found: `nfsv4'
==> ERROR: module not found: `nfsv2'
==> ERROR: module not found: `quota_tree'
==> ERROR: module not found: `quota_v2'
==> ERROR: module not found: `quota_v1'
==> ERROR: module not found: `cramfs'
==> ERROR: module not found: `affs'
==> ERROR: module not found: `orangefs'
==> ERROR: module not found: `jffs2'
==> ERROR: module not found: `vboxsf'
==> ERROR: module not found: `fscache'
==> ERROR: module not found: `ufs'
==> ERROR: module not found: `ubifs'
==> ERROR: module not found: `cuse'
==> ERROR: module not found: `fuse'
==> ERROR: module not found: `virtiofs'
==> ERROR: module not found: `btrfs'
==> ERROR: module not found: `exfat'
==> ERROR: module not found: `ecryptfs'
==> ERROR: module not found: `cifs'
==> ERROR: module not found: `befs'
==> ERROR: module not found: `ksmbd'
==> ERROR: module not found: `mbcache'
==> ERROR: module not found: `f2fs'
==> ERROR: module not found: `udf'
==> ERROR: module not found: `ntfs3'
==> ERROR: module not found: `overlay'
==> ERROR: module not found: `cachefiles'
==> ERROR: module not found: `ext4'
==> ERROR: module not found: `kafs'
==> ERROR: module not found: `nilfs2'
==> ERROR: module not found: `ramoops'
==> ERROR: module not found: `fat'
==> ERROR: module not found: `vfat'
==> ERROR: module not found: `msdos'
==> ERROR: module not found: `omfs'
==> ERROR: module not found: `isofs'
==> ERROR: module not found: `coda'
==> ERROR: module not found: `netfs'
==> ERROR: module not found: `hfs'
==> ERROR: module not found: `romfs'
==> ERROR: module not found: `lockd'
==> ERROR: module not found: `squashfs'
==> ERROR: module not found: `reiserfs'
==> ERROR: module not found: `dlm'
==> ERROR: module not found: `cifs_arc4'
==> ERROR: module not found: `cifs_md4'
==> ERROR: module not found: `hfsplus'
==> ERROR: module not found: `grace'
==> ERROR: module not found: `nfs_acl'
==> ERROR: module not found: `zonefs'
==> ERROR: module not found: `ceph'
==> ERROR: module not found: `nfsd'
==> ERROR: module not found: `ocfs2_stack_o2cb'
==> ERROR: module not found: `ocfs2_dlmfs'
==> ERROR: module not found: `ocfs2_dlm'
==> ERROR: module not found: `ocfs2_stack_user'
==> ERROR: module not found: `ocfs2_nodemanager'
==> ERROR: module not found: `ocfs2_stackglue'
==> ERROR: module not found: `ocfs2'
==> ERROR: module not found: `gfs2'
==> ERROR: module not found: `minix'
==> ERROR: module not found: `xfs'
==> ERROR: module not found: `jfs'
==> ERROR: module not found: `erofs'
==> ERROR: module not found: `9p'
  -> Running build hook: [fsck]
==> WARNING: No modules were added to the image. This is probably not what you want.
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64-fallback.img
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
bsdtar: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
bsdtar: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
==> WARNING: errors were encountered during the build. The image may not be complete.
==> ERROR: Image generation FAILED: find reported an error
error: command failed to execute correctly
(4/4) Updating Grub-Bootmenu
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
Found linux image: /boot/vmlinuz-5.10-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.10-x86_64.img
Found initrd fallback image: /boot/initramfs-5.10-x86_64-fallback.img
sort: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
Found linux image: /boot/vmlinuz-5.13-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.13-x86_64.img
Found initrd fallback image: /boot/initramfs-5.13-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.15-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.15-x86_64.img
Found initrd fallback image: /boot/initramfs-5.15-x86_64-fallback.img
Warning: 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.
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
udevadm: error while loading shared libraries: libcrypto.so.1.1: cannot open shared object file: No such file or directory
Adding boot menu entry for UEFI Firmware Settings ...
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
done

hmm… and all related to the libcrypto.so … did you installed it with?:

sudo pacman --sysroot /mnt -S openssl lib32-openssl --overwrite '*'
1 Like

I did, and it seemed to go smoothly. Here is the terminal output:

[manjaro@manjaro ~]$ sudo pacman --sysroot /mnt -S openssl lib32-openssl --overwrite '*'
warning: openssl-3.0.8-1 is up to date -- reinstalling
warning: lib32-openssl-1:3.0.8-0.1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...

Packages (2) lib32-openssl-1:3.0.8-0.1  openssl-3.0.8-1

Total Installed Size:  15.84 MiB
Net Upgrade Size:       0.00 MiB

:: Proceed with installation? [Y/n] Y
(2/2) checking keys in keyring                                                             [#####################################################] 100%
(2/2) checking package integrity                                                           [#####################################################] 100%
(2/2) loading package files                                                                [#####################################################] 100%
(2/2) checking for file conflicts                                                          [#####################################################] 100%
(2/2) checking available disk space                                                        [#####################################################] 100%
:: Running pre-transaction hooks...
(1/1) Creating Timeshift snapshot before upgrade...
==> skipping timeshift-autosnap due skipRsyncAutosnap in /etc/timeshift-autosnap.conf set to TRUE.
:: Processing package changes...
(1/2) reinstalling openssl                                                                 [#####################################################] 100%
(2/2) reinstalling lib32-openssl                                                           [#####################################################] 100%
:: Running post-transaction hooks...
(1/1) Arming ConditionNeedsUpdate...

so rerun the update first:

sudo pacman --sysroot /mnt -Syu

and if it didnt gave you any libcrypto errors, rerun again the linux515 install command

1 Like

I rebooted to see what happened first and I no longer have the option to boot to my windows partition in the GRUB bootloader, and the manjaro one was still showing the kernel panic.

Doing the update threw an error:

[manjaro@manjaro ~]$ sudo pacman --sysroot /mnt -Syu
:: Synchronizing package databases...
 core is up to date
 extra                1855.0 KiB  5.44 MiB/s 00:00 [######################] 100%
 community               7.6 MiB  16.9 MiB/s 00:00 [######################] 100%
 multilib is up to date
:: Starting full system upgrade...
:: Replace at-spi2-atk with extra/at-spi2-core? [Y/n] Y
:: Replace atk with extra/at-spi2-core? [Y/n] Y
:: Replace steam-manjaro with multilib/steam? [Y/n] Y
resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: mesa will be installed before its libglvnd dependency
warning: dependency cycle detected:
warning: lib32-mesa will be installed before its lib32-libglvnd dependency
warning: dependency cycle detected:
warning: rubygems will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-abbrev will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-base64 will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-benchmark will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-bigdecimal will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-bundler will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-cgi will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-csv will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-date will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-delegate will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-did_you_mean will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-digest will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-drb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-ruby2_keywords will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-english will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-erb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-etc will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fcntl will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fiddle will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fileutils will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-find will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-forwardable will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-getoptlong will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-console will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-nonblock will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-wait will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-ipaddr will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-irb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-reline will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-json will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-logger will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-mutex_m will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-net-http will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-uri will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-open-uri will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-stringio will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-time will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-psych will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-racc will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-rdoc will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-tmpdir will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-minitest will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-power_assert will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-rake will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-test-unit will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-bundledgems will be installed before its ruby dependency

Packages (935) a52dec-0.7.4-12  aalib-1.4rc5-15  abseil-cpp-20220623.1-1
               acpid-2.0.34-1  adwaita-cursors-43-2  adwaita-icon-theme-43-2
               alsa-card-profiles-1:0.3.65-6  alsa-lib-1.2.8-1
               alsa-ucm-conf-1.2.8-1  alsa-utils-1.2.8-1
               amd-ucode-20230117.7e4f0ed-1  android-tools-33.0.3-3
               android-udev-20230104-1  aom-3.6.0-1  apparmor-3.1.2-1
               appstream-0.16.0-1  appstream-glib-0.8.2-1
               archlinux-appstream-data-20230115-1
               arm-none-eabi-binutils-2.39-2  arm-none-eabi-gcc-12.2.0-1
               aspell-0.60.8-3  at-spi2-atk-2.38.0-1 [removal]
               at-spi2-core-2.46.0-2  atk-2.38.0-1 [removal]  atkmm-2.28.3-1
               audacious-4.2-3  audacious-plugins-4.2-3  audit-3.0.9-2
               avr-binutils-2.39-2  avr-gcc-12.2.0-1  avrdude-1:7.0-3
               b43-fwcutter-019-4  babl-0.1.98-1  bamf-0.5.6-1
               bash-completion-2.11-3  binutils-2.40-4  blueman-2.3.5-1
               bluez-5.66-1  bluez-libs-5.66-1  boost-libs-1.81.0-2
               botan-2.19.3-1  brotli-1.0.9-9  btrfs-progs-6.1.3-1
               bubblewrap-0.7.0-1  bzip2-1.0.8-5  ca-certificates-20220905-1
               ca-certificates-mozilla-3.87-1  ca-certificates-utils-20220905-1
               cairo-1.17.8-2  cairomm-1.14.4-1  catfish-4.16.4-1
               chromaprint-1.5.1-6  cifs-utils-7.0-2  ckbcomp-1.212-1
               clang-15.0.7-1  clucene-2.3.3.4-14  cmake-3.25.2-1
               compiler-rt-15.0.7-1  coreutils-9.1-3  cpupower-6.1-1
               cryptsetup-2.6.0-1  cups-1:2.4.2-5  cups-filters-1.28.17-1
               cups-pdf-3.0.1-7  cups-pk-helper-0.2.7-1  curl-7.87.0-3
               cython-0.29.33-1  db-6.2.32-1  db5.3-5.3.28-2  dconf-0.40.0-2
               default-cursors-2-1  device-mapper-2.03.18-4
               dhclient-4.4.3.P1-1  discord-0.0.25-1  djvulibre-3.5.28-4
               dmraid-1.0.0.rc16.3-14  dnsmasq-2.89-1  dosfstools-4.2-3
               double-conversion-3.2.1-1  duktape-2.7.0-5  e2fsprogs-1.46.6-1
               ecryptfs-utils-111-7  efibootmgr-18-1
               elementary-icon-theme-7.2.0-1  elfutils-0.188-3  enchant-2.3.3-2
               evince-43.1-2  exiv2-0.27.6-1  exo-4.18.0-1  expat-2.5.0-1
               f2fs-tools-1.15.0-2  faad2-2.10.1-1  fakeroot-1.31-1
               ffmpeg-2:5.1.2-1  file-5.44-1  filesystem-2023.01.30-1
               findutils-4.9.0-2  firefox-110.0-0.1  flac-1.4.2-1
               flatpak-1:1.15.2-1  flex-2.6.4-4  fluidsynth-2.3.1-1
               fmt-9.1.0-4  fontconfig-2:2.14.2-1  foomatic-db-3:20230115-1
               foomatic-db-gutenprint-ppds-5.3.4-2
               foomatic-db-nonfree-3:20230115-1
               foomatic-db-nonfree-ppds-3:20230115-1
               foomatic-db-ppds-3:20230115-1  freeglut-3.4.0-1
               fuse-common-3.13.0-1  fuse3-3.13.0-1  game-devices-udev-0.18-1
               garcon-4.18.0-1  gawk-5.2.1-1  gc-8.2.2-1  gcab-1.5-1
               gcc-12.2.1-2  gcc-libs-12.2.1-2  gcr-3.41.1-3  gcr-4-4.0.0-1
               gd-2.3.3-6  gdk-pixbuf2-2.42.10-2  gegl-0.4.40-4
               geoclue-2.7.0-1  geocode-glib-3.26.4-2
               geocode-glib-common-3.26.4-2  gettext-0.21.1-2
               ghostscript-10.0.0-4  gimp-2.10.32-3  git-2.39.1-1  glew-2.2.0-6
               glib-networking-1:2.74.0-1  glib2-2.74.5-1  glibc-2.37-2
               glibmm-2.66.5-1  glibmm-2.68-2.74.0-1  glslang-11.13.0-2
               gnome-desktop-1:43.1-1  gnome-desktop-4-1:43.1-1
               gnome-desktop-common-1:43.1-1  gnome-keyring-1:42.1-2
               gnome-menus-3.36.0-2  gnupg-2.2.40-1  gnutls-3.7.8-5
               gobject-introspection-runtime-1.74.0-1  gpgme-1.18.0-2
               gptfdisk-1.0.9-2  graphviz-7.1.0-1  grep-3.8-2
               grub-2.06.r261.g2f4430cc0-3  grub-btrfs-4.12-2
               grub-theme-manjaro-20.2-13  gsettings-desktop-schemas-43.0-1
               gsm-1.0.22-1  gspell-1.12.0-2  gssdp-1.6.2-1  gst-libav-1.22.0-3
               gst-plugins-bad-1.22.0-3  gst-plugins-bad-libs-1.22.0-3
               gst-plugins-base-1.22.0-3  gst-plugins-base-libs-1.22.0-3
               gst-plugins-good-1.22.0-3  gst-plugins-ugly-1.22.0-3
               gstreamer-1.22.0-3  gtk-update-icon-cache-1:4.8.3-3
               gtk3-1:3.24.36-1  gtk4-1:4.8.3-3  gtkhash-1.5-2
               gtkhash-thunar-1.5-2  gtkmm3-3.24.7-1
               gtksourceview3-1:3.24.11+r28+g73e57b57-1  gtksourceview4-4.8.4-1
               guile-3.0.9-1  gupnp-1:1.6.3-1  gupnp-igd-1.2.0-3
               gutenprint-5.3.4-2  gvfs-1.50.3-1  gvfs-afc-1.50.3-1
               gvfs-gphoto2-1.50.3-1  gvfs-mtp-1.50.3-1  gvfs-nfs-1.50.3-1
               gvfs-smb-1.50.3-1  harfbuzz-6.0.0-1  harfbuzz-icu-6.0.0-1
               hdparm-9.65-1  hexchat-2.16.1-3  hidapi-0.13.1-1
               hplip-1:3.22.10-3  htop-3.2.2-1  hunspell-1.7.2-1
               hwdata-0.366-1  hwinfo-22.2-2  hwloc-2.8.0-1  hyphen-2.8.8-5
               iana-etc-20221215-1  ibus-1.5.27-1  icu-72.1-2  ijs-0.35-5
               imagemagick-7.1.0.61-1  imath-3.1.6-2  imlib2-1.10.0-3
               inetutils-2.3-1  inxi-3.3.25.1-1  iproute2-6.1.0-4
               iptables-1:1.8.9-1  iputils-20221126-1  iso-codes-4.12.0-1
               jack2-1.9.21-3  jasper-4.0.0-1  java-environment-common-3-5
               java-runtime-common-3-5  jdk8-openjdk-8.362.u09-1
               jre8-openjdk-8.362.u09-1  jre8-openjdk-headless-8.362.u09-1
               kauth-5.102.0-1  kcoreaddons-5.102.0-1  kguiaddons-5.102.0-1
               kitemmodels-5.102.0-1  kmod-30-3  krb5-1.20.1-1  kvantum-1.0.9-0
               kwayland-5.102.0-1  kwindowsystem-5.102.0-1  lame-3.100-4
               languagetool-6.0-1  lcms2-2.14-2  ldb-2:2.6.1-2  ldns-1.8.3-2
               less-1:608-2  lib32-alsa-lib-1.2.8-1  lib32-brotli-1.0.9-5
               lib32-bzip2-1.0.8-3  lib32-curl-7.87.0-1
               lib32-e2fsprogs-1.46.6-1  lib32-expat-2.5.0-2
               lib32-freeglut-3.4.0-1  lib32-gcc-libs-12.2.1-2
               lib32-glew-2.2.0-4  lib32-glibc-2.37-2  lib32-icu-72.1-2
               lib32-krb5-1.20.1-1  lib32-libcap-2.66-1  lib32-libdrm-2.4.114-1
               lib32-libelf-0.188-1  lib32-libffi-3.4.4-1
               lib32-libgcrypt-1.10.1-2  lib32-libglvnd-1.6.0-1
               lib32-libgpg-error-1.46-1  lib32-libice-1.1.1-1
               lib32-libidn2-2.3.4-2  lib32-libldap-2.6.3-3
               lib32-libpciaccess-0.17-1  lib32-libpsl-0.21.1-3
               lib32-libsm-1.2.4-1  lib32-libssh2-1.10.0-2
               lib32-libtasn1-4.19.0-1  lib32-libtirpc-1.3.3-2
               lib32-libunistring-1.1-1  lib32-libunwind-1.6.2-2
               lib32-libva-2.17.0-1  lib32-libva-mesa-driver-22.3.5-1
               lib32-libva-vdpau-driver-0.7.4-7  lib32-libx11-1.8.3-1.1
               lib32-libxau-1.0.11-1  lib32-libxcb-1.15-2
               lib32-libxcrypt-4.4.33-1  lib32-libxcrypt-compat-4.4.33-1
               lib32-libxdamage-1.1.6-1  lib32-libxdmcp-1.1.4-1
               lib32-libxext-1.3.5-1  lib32-libxfixes-6.0.0-2
               lib32-libxi-1.8-2  lib32-libxml2-2.10.3-2  lib32-libxmu-1.1.4-1
               lib32-libxrandr-1.5.3-1  lib32-libxrender-0.9.11-1
               lib32-libxshmfence-1.3.2-1  lib32-libxxf86vm-1.1.5-1
               lib32-llvm-libs-15.0.7-1
               lib32-lm_sensors-1:3.6.0.r41.g31d1f125-2  lib32-mesa-22.3.5-1
               lib32-mesa-vdpau-22.3.5-1  lib32-ncurses-6.4-1
               lib32-nspr-4.35-1  lib32-nss-3.87-1  lib32-readline-8.2.001-2
               lib32-sqlite-3.40.1-1  lib32-systemd-252.5-1
               lib32-util-linux-2.38.1-1  lib32-vulkan-icd-loader-1.3.240-1
               lib32-vulkan-intel-22.3.5-1  lib32-vulkan-radeon-22.3.5-1
               lib32-wayland-1.21.0-1  lib32-xz-5.4.1-1  lib32-zlib-1.2.13-2
               libadwaita-1:1.2.1-1  libappindicator-gtk3-12.10.0.r298-1
               libarchive-3.6.2-2  libass-0.17.0-1
               libasyncns-1:0.8+r3+g68cd5af-2  libatomic_ops-7.6.14-1
               libavif-0.11.1-1  libayatana-appindicator-0.5.92-1
               libayatana-indicator-0.9.3-1  libblockdev-2.28-1
               libbluray-1.3.4-1  libbpf-1.0.1-1  libbs2b-3.1.0-8
               libbsd-0.11.7-1  libcamera-0.0.4-1
               libcanberra-1:0.30+r2+gc0620e4-3  libcap-2.66-1  libcddb-1.3.2-7
               libcdio-2.1.0-3  libcdr-0.1.7-5
               libcloudproviders-0.3.1+r8+g3a229ee-1  libcups-1:2.4.2-5
               libdatrie-0.2.13-2  libde265-1.0.11-1  libdiscid-0.6.2-4
               libdrm-2.4.114-1  libe-book-0.1.3-13  libebml-1.4.4-1
               libedit-20210910_3.1-2  libelf-0.188-3  libepubgen-0.1.1-4
               libetonyek-0.1.10-3  libevdev-1.13.0-1  libevent-2.1.12-4
               libffi-3.4.4-1  libfontenc-1.1.7-1  libgcrypt-1.10.1-2
               libgee-0.20.6-1  libgit2-1:1.5.1-2  libglvnd-1.6.0-1
               libgnomekbd-1:3.28.1-1  libgpg-error-1.46-2  libgphoto2-2.5.30-2
               libgpod-0.8.3-14  libgsf-1.14.50-1  libgusb-0.4.5-1
               libgxps-0.3.2-3  libhandy-1.8.1-1  libheif-1.14.2-1
               libibus-1.5.27-1  libical-3.0.16-4  libice-1.1.1-1
               libidn2-2.3.4-3  libiec61883-1.2.0-7  libieee1284-0.2.11-14
               libimagequant-4.0.4-1  libimobiledevice-1.3.0-6  libinih-56-1
               libinput-1.22.1-1  libixion-0.17.0-4  libjpeg-turbo-2.1.4-2
               libkeybinder3-0.3.2-4  libksba-1.6.3-1  libldap-2.6.3-2
               liblouis-3.24.0-1  libltc-1.3.2-1  libmalcontent-0.11.0-1
               libmatroska-1.7.1-1  libmbim-1.28.2-1  libmfx-23.1.0-1
               libmm-glib-1.20.4-1  libmodplug-0.8.9.0-5  libmpc-1.3.1-1
               libmspub-0.1.4-13  libmusicbrainz5-5.1.0-5  libmwaw-0.3.21-3
               libmythes-1:1.2.5-1  libnewt-0.52.23-1  libnfs-5.0.2-1
               libnftnl-1.2.4-1  libnghttp2-1.51.0-1  libnice-0.1.21-1
               libnl-3.7.0-3  libnm-1.40.12-1  libnma-1.10.6-1
               libnma-common-1.10.6-1  libnotify-0.8.1-1
               libnumbertext-1.0.11-1  libodfgen-0.1.8-2
               libomxil-bellagio-0.9.3-4  libopenmpt-0.6.8-1
               libopenraw-0.3.3-1  liborcus-0.17.2-4  libpamac-11.4.1-3
               libpamac-flatpak-plugin-11.4.1-2  libpamac-snap-plugin-11.4.1-2
               libpcap-1.10.3-1  libpciaccess-0.17-1  libpipeline-1.5.7-1
               libplacebo-5.229.1-2  libplist-2.2.0-6  libpng-1.6.39-1
               libproxy-0.4.18-2  libpsl-0.21.2-1  libpulse-16.1-3
               libpurple-2.14.12-1  libqmi-1.32.2-1  libqxp-0.0.2-9
               libraqm-0.10.0-1  libraw-0.21.1-1  libreoffice-fresh-7.5.0-1
               librevenge-0.0.5-2  librsvg-2:2.55.1-1  libsasl-2.1.28-4
               libshout-1:2.4.6-2  libsidplayfp-2.4.2-1  libsigc++-2.12.0-1
               libsigc++-3.0-3.4.0-1  libsm-1.2.4-1  libsndfile-1.2.0-1
               libsoup-2.74.3-1  libsoup3-3.2.2-1  libsoxr-0.1.3-3
               libspectre-0.2.12-1  libspiro-1:20221101-1  libsrtp-1:2.5.0-1
               libssh-0.10.4-3  libssh2-1.10.0-3  libsynctex-2022.62885-3
               libsysprof-capture-3.46.0-4  libtasn1-4.19.0-1  libteam-1.31-7
               libtg_owt-0.git20.5098730-1  libthai-0.1.29-2  libtiff-4.5.0-1
               libtirpc-1.3.3-2  libtool-2.4.7+4+g1ec8fa28-2
               libunistring-1.1-2  libunwind-1.6.2-2  libupnp-1.14.15-1
               liburcu-0.13.2-1  liburing-2.3-1  libusb-compat-0.1.8-1
               libuv-1.44.2-1  libva-2.17.0-1  libva-mesa-driver-22.3.5-1
               libvisio-0.1.7-8  libvpx-1.12.0-2  libwacom-2.6.0-1
               libwbclient-4.17.5-1  libwebp-1.3.0-2  libwmf-0.2.12-3
               libwnck3-43.0-3  libwpd-0.10.3-4  libwpe-1.14.1-1
               libwpg-0.3.3-4  libwps-0.4.13-1  libx11-1.8.3-6  libxau-1.0.11-1
               libxcb-1.15-2  libxcomposite-0.4.6-1  libxcrypt-4.4.33-1
               libxcrypt-compat-4.4.33-1  libxcursor-1.2.1-3  libxcvt-0.1.2-1
               libxdamage-1.1.6-1  libxdmcp-1.1.4-1  libxext-1.3.5-1
               libxfce4ui-4.18.2-1  libxfce4util-4.18.1-1  libxfixes-6.0.0-2
               libxfont2-2.0.6-1  libxft-2.3.7-1  libxi-1.8-2
               libxinerama-1.1.5-1  libxkbcommon-1.5.0-1
               libxkbcommon-x11-1.5.0-1  libxkbfile-1.1.2-1  libxml2-2.10.3-2
               libxmlb-0.3.10-1  libxmu-1.1.4-1  libxpm-3.5.15-1
               libxpresent-1.0.1-1  libxrandr-1.5.3-1  libxrender-0.9.11-1
               libxres-1.2.2-1  libxshmfence-1.3.2-1  libxslt-1.1.37-2
               libxtst-1.2.4-1  libxv-1.0.12-1  libxxf86vm-1.1.5-1
               libyaml-0.2.5-2  libzmf-0.0.2-13  lightdm-1:1.32.0-4
               lightdm-gtk-greeter-1:2.0.8-3  lilv-0.24.20-1
               linux-api-headers-6.1.9-1  linux-firmware-20230117.7e4f0ed-1
               linux-firmware-whence-20230117.7e4f0ed-1  linux510-5.10.167-1
               lirc-1:0.10.2-2  llvm-15.0.7-1  llvm-libs-15.0.7-1
               lm_sensors-1:3.6.0.r41.g31d1f125-2  lmdb-0.9.30-1
               logrotate-3.21.0-2  lpsolve-5.5.2.11-2  lsof-4.98.0-1
               luajit-2.1.0.beta3.r467.gd0e88930-1  lv2-1.18.10-1
               lvm2-2.03.18-4  lz4-1:1.9.4-1  lzo-2.10-5  m4-1.4.19-2
               make-4.4-1  man-db-2.11.2-1  man-pages-6.02-1
               manjaro-alsa-20221002-1  manjaro-hello-0.7.0-2
               manjaro-printer-20220924-1  manjaro-pulse-20221015-2
               manjaro-release-22.0.3-1  manjaro-settings-manager-0.5.7-13
               manjaro-settings-manager-notifier-0.5.7-13
               matcha-gtk-theme-20221115-1  mbedtls-2.28.2-1  memtest86+-6.10-1
               mesa-22.3.5-1  mesa-vdpau-22.3.5-1  mhwd-0.6.5-23
               mhwd-db-0.6.5-23  mhwd-nvidia-525.89.02-1
               mhwd-nvidia-390xx-390.157-1  mhwd-nvidia-470xx-470.161.03-2
               miniupnpc-2.2.4-1  minizip-1:1.2.13-2  mkinitcpio-34-1.1
               mktorrent-1.1-6  mobile-broadband-provider-info-20221107-2
               modemmanager-1.20.4-1  mousepad-0.6.0-1  mpfr-4.2.0-3
               mpg123-1.31.2-2  mythes-en-20221102-2  nano-7.2-1  ncurses-6.4-1
               ndctl-75-1  neon-0.32.5-1  net-snmp-5.9.1-5  netpbm-10.73.42-2
               nettle-3.8.1-1  network-manager-applet-1.30.0-1
               networkmanager-1.40.12-1  networkmanager-openvpn-1.10.2-1
               nfs-utils-2.6.2-1  nfsidmap-2.6.2-1  nftables-1:1.0.6-1
               nm-connection-editor-1.30.0-1  noto-fonts-20230201-1
               nspr-4.35-1  nss-3.87-1  ntfs-3g-2022.10.3-1  ntp-4.2.8.p15-3
               nuspell-5.1.2-2  obs-studio-29.0.2-1
               onlyoffice-desktopeditors-7.3.0-1  openal-1.23.0-1
               opencore-amr-0.1.6-1  openjpeg2-2.5.0-2  openmpi-4.1.4-4
               openpmix-4.2.3-1  openssh-9.2p1-1  openssl-1.1-1.1.1.t-1
               openvpn-2.6.0-1  orc-0.4.33-1  os-prober-1.81-1  ostree-2022.7-1
               p7zip-1:17.04-4  pacman-6.0.2-7
               pacman-mirrors-4.23.2+2+g2f58b3c-3  pamac-cli-10.4.3-3
               pamac-gtk-10.4.3-3  pambase-20221020-1  pango-1:1.50.12-1
               pangomm-2.46.3-1  papirus-icon-theme-20230104-1
               pavucontrol-1:5.0+r61+gee77d86-2  pciutils-3.9.0-2  pcre-8.45-3
               pcre2-10.42-2  pcsclite-1.9.9-2  perl-5.36.0-3
               perl-alien-build-2.77-1  perl-alien-libxml2-0.19-1
               perl-clone-0.46-1  perl-encode-locale-1.05-10
               perl-ffi-checklib-0.31-2  perl-file-desktopentry-0.22-10
               perl-file-mimeinfo-0.33-1  perl-html-parser-3.81-1
               perl-html-tagset-3.20-13  perl-http-date-6.05-6
               perl-http-message-6.44-1  perl-http-negotiate-6.01-11
               perl-libwww-6.67-1  perl-lwp-mediatypes-6.04-3
               perl-path-tiny-0.144-1  perl-uri-5.17-1
               perl-www-robotrules-6.02-11  perl-xml-libxml-2.0208-1
               perl-xml-namespacesupport-1.12-5  perl-xml-sax-base-1.09-5
               pidgin-2.14.12-1  pinentry-1.2.1-1  pipewire-1:0.3.65-6
               pixman-0.42.2-1  pkcs11-helper-1.29.0-2  polkit-122-1
               poppler-23.02.0-1  poppler-data-0.4.12-1  poppler-glib-23.02.0-1
               poppler-qt5-23.02.0-1  popt-1.19-1  postgresql-libs-15.1-3
               powertop-2.15-1  ppp-2.4.9-3  pptpclient-1.10.0-3
               protobuf-21.12-1  protobuf-c-1.4.1-1  psmisc-23.6-1
               pulseaudio-16.1-3  pulseaudio-bluetooth-16.1-3
               pulseaudio-equalizer-16.1-3  pulseaudio-jack-16.1-3
               pulseaudio-lirc-16.1-3  pulseaudio-rtp-16.1-3
               pulseaudio-zeroconf-16.1-3  pyside6-6.4.2-5  python-3.10.9-1
               python-appdirs-1.4.4-7  python-attrs-22.2.0-1
               python-autocommand-2.2.2-1  python-cachecontrol-1:0.12.11-1
               python-cairo-1.23.0-3  python-certifi-2022.12.07-1
               python-chardet-5.1.0-1  python-colorama-0.4.6-1
               python-commonmark-0.9.1-6  python-cryptography-39.0.1-1
               python-distlib-0.3.6-1  python-distro-1.8.0-2
               python-dnspython-1:2.2.1-2  python-docutils-1:0.19-2
               python-dotty-dict-1.3.1-2  python-fastjsonschema-2.16.2-1
               python-gobject-3.42.2-1  python-idna-3.4-1
               python-importlib-metadata-5.0.0-3  python-inflect-6.0.2-1
               python-jaraco.context-4.3.0-1  python-jaraco.functools-3.5.2-1
               python-jaraco.text-3.11.1-1  python-jsonschema-4.17.3-1
               python-manjaro-sdk-0.9-1  python-markdown-3.4.1-2
               python-markdown-it-py-2.1.0-1  python-mdurl-0.1.2-2
               python-more-itertools-9.0.0-1  python-msgpack-1.0.4-1
               python-nspektr-0.4.0-2  python-ordered-set-4.1.0-1
               python-packaging-23.0-1  python-pillow-9.4.0-2
               python-pip-22.3.1-1  python-platformdirs-2.6.2-1
               python-psutil-5.9.4-1  python-pydantic-1.10.4-1
               python-pygments-2.14.0-2  python-pyopenssl-23.0.0-1
               python-pyqt5-5.15.9-1  python-pyqt5-sip-12.11.1-1
               python-pyrsistent-0.19.3-1  python-reportlab-3.6.12-2
               python-requests-2.28.1-1  python-resolvelib-0.9.0-1
               python-retrying-1.3.3-15  python-rich-13.3.1-1
               python-setuptools-1:67.2.0-1  python-six-1.16.0-6
               python-systemd-235-1  python-tenacity-8.2.1-1
               python-termcolor-2.2.0-1  python-toml-0.10.2-8
               python-trove-classifiers-2023.2.8-1
               python-typing_extensions-4.4.0-1  python-uc-micro-py-1.0.1-3
               python-urllib3-1.26.12-1  python-validate-pyproject-0.12.1-1
               python-wheel-0.38.4-1  python-zipp-3.13.0-1  qmk-1.1.1-1
               qpdf-11.2.0-1  qrencode-4.1.1-2  qt5-base-5.15.8+kde+r181-1
               qt5-declarative-5.15.8+kde+r24-2
               qt5-imageformats-5.15.8+kde+r9-1  qt5-svg-5.15.8+kde+r8-1
               qt5-translations-5.15.8-1  qt5-wayland-5.15.8+kde+r58-1
               qt5-x11extras-5.15.8-1  qt6-5compat-6.4.2-1  qt6-base-6.4.2-1
               qt6-declarative-6.4.2-1  qt6-imageformats-6.4.2-1
               qt6-svg-6.4.2-1  qt6-translations-6.4.2-1  qt6-wayland-6.4.2-1
               r-4.2.2-2  raptor-2.0.15-21  rav1e-0.6.3-1  readline-8.2.001-2
               redshift-1.12-6  reiserfsprogs-3.6.27-4  rhash-1.4.3-1
               rpcbind-1.2.6-3  rsync-3.2.7-3  rtkit-0.13-2  ruby-3.0.5-1
               ruby-abbrev-0.1.0-4  ruby-addressable-2.8.1-1
               ruby-base64-0.1.1-4  ruby-benchmark-0.2.0-4
               ruby-bigdecimal-3.1.2-4  ruby-bundledgems-3.0.5-1
               ruby-bundler-2.4.1-1  ruby-cgi-0.3.6-1  ruby-csv-3.2.5-4
               ruby-date-3.2.2-4  ruby-delegate-0.2.0-4
               ruby-did_you_mean-1.6.1-4  ruby-digest-3.1.1-1  ruby-drb-2.1.0-5
               ruby-english-0.7.1-5  ruby-erb-4.0.2-2  ruby-etc-1.3.0-6
               ruby-eventmachine-1.2.7-6  ruby-fcntl-1.0.1-4
               ruby-fiddle-1.1.0-4  ruby-fileutils-1.6.0-4  ruby-find-0.1.1-4
               ruby-forwardable-1.3.2-6  ruby-getoptlong-0.1.1-3
               ruby-i18n-1.12.0-1  ruby-io-console-0.5.11-3
               ruby-io-nonblock-0.1.0-3  ruby-io-wait-0.2.3-4
               ruby-ipaddr-1.2.4-3  ruby-irb-1.4.2-1
               ruby-jekyll-sass-converter-2.2.0-1  ruby-json-2.6.3-1
               ruby-kramdown-parser-gfm-1.1.0-2  ruby-listen-3.8.0-2
               ruby-logger-1.5.1-3  ruby-minitest-5.16.3-1  ruby-mocha-1.16.1-1
               ruby-mutex_m-0.1.1-3  ruby-net-http-0.2.2-2
               ruby-open-uri-0.2.0-3  ruby-power_assert-2.0.2-1
               ruby-psych-4.0.6-1  ruby-public_suffix-5.0.0-1
               ruby-racc-1.6.0-3  ruby-rake-13.0.6-1  ruby-rb-fsevent-0.11.2-1
               ruby-rdoc-6.4.0-4  ruby-reline-0.3.1-2
               ruby-ruby2_keywords-0.0.5-1  ruby-stdlib-3.0.5-1
               ruby-stringio-3.0.2-4  ruby-test-unit-3.5.7-1  ruby-time-0.2.0-4
               ruby-tmpdir-0.1.2-3  ruby-tzinfo-2.0.5-1
               ruby-unicode-display_width-2.4.2-1  ruby-uri-0.11.0-5
               ruby-zeitwerk-2.6.1-1  rubygems-3.3.25-1  s-nail-14.9.24-2
               samba-4.17.5-1  sane-1.1.1-2  sbc-2.0-1  sdl2-2.26.3-1
               sed-4.9-1  serd-0.30.16-1  shaderc-2022.4-1  shadow-4.13-2
               shared-mime-info-2.2+13+ga2ffb28-1  shiboken6-6.4.2-5
               slang-2.3.3-2  smbclient-4.17.5-1  snapd-2.58.2-1
               snapd-glib-1.63-3  sof-firmware-2.2.4-1  sord-0.16.14-1
               soundtouch-2.3.2-1  spandsp-0.0.6-4
               spectre-meltdown-checker-0.45+1+gb68ebe6-2  spirv-tools-2022.4-1
               splix-2.0.0-19  sqlite-3.40.1-1  squashfs-tools-4.5.1-2
               sratom-0.6.14-1  srt-1.5.1-3  steam-1.0.0.75-2
               steam-manjaro-1.0.0.74-1 [removal]  strawberry-1.0.14-2
               sudo-1.9.12.p2-1  suitesparse-7.0.1-2  svt-av1-1.4.1-1
               systemd-252.5-1  systemd-libs-252.5-1
               systemd-sysvcompat-252.5-1  taglib-1.13-1  talloc-2.4.0-2
               tcl-8.6.13-1  tdb-1.4.8-1  telegram-desktop-4.6.1-1
               terminus-font-4.49.1-5  tevent-1:0.14.0-1  texinfo-7.0.2-2
               thin-provisioning-tools-1.0.0-1  thunar-4.18.3-1
               thunar-media-tags-plugin-0.4.0-1  thunar-volman-4.18.0-1
               thunarx-python-0.5.2-3  thunderbird-102.7.2-1
               timeshift-22.11.2-1  tlp-1.5.0-5  tpm2-tss-3.2.0-3
               tracker3-3.4.2-2  tumbler-4.18.0-1  tzdata-2022g-2
               unrar-1:6.2.5-1  unzip-6.0-19  upower-1.90.0-3  usbmuxd-1.1.1-2
               usbutils-015-2  util-linux-2.38.1-1  util-linux-libs-2.38.1-1
               vi-1:070224-6  vlc-3.0.18-6  vpnc-1:0.5.3.r506.r204-2
               vte-common-0.70.2-1  vte3-0.70.2-1  vulkan-headers-1:1.3.240-1
               vulkan-icd-loader-1.3.240-1  vulkan-intel-22.3.5-1
               vulkan-radeon-22.3.5-1  wavpack-5.6.0-1  wayland-1.21.0-2
               wayland-protocols-1.31-1  webkit2gtk-2.38.4-1
               webkit2gtk-4.1-2.38.4-1  wildmidi-0.4.5-1
               wireless-regdb-2022.08.12-1  woff2-1.0.2-4
               wpa_supplicant-2:2.10-8  wpebackend-fdo-1.14.0-1
               x264-3:0.164.r3095.baee400-4  xapp-2.4.2-1  xcb-proto-1.15.2-2
               xcb-util-0.4.1-1  xcb-util-cursor-0.1.4-1
               xcb-util-image-0.4.1-2  xcb-util-keysyms-0.4.1-4
               xcb-util-renderutil-0.3.10-1  xcb-util-wm-0.4.2-1
               xcursor-breeze-5.24.6-1  xdg-desktop-portal-1.16.0-1
               xdg-desktop-portal-gnome-43.1-1  xdg-desktop-portal-gtk-1.14.1-1
               xdg-user-dirs-0.18-1  xdg-utils-1.1.3+25+g8ae0263-1
               xf86-input-elographics-1.4.3-1  xf86-input-void-1.4.2-1
               xf86-input-wacom-1.1.0-1
               xf86-video-ati-1:19.1.0.r15.g7a6a34af-1
               xf86-video-intel-1:2.99.917+923+gb74b67f0-1
               xfce4-appfinder-4.18.0-1  xfce4-cpufreq-plugin-1.2.8-1
               xfce4-cpugraph-plugin-1.2.7-1  xfce4-notifyd-0.7.3-1
               xfce4-panel-4.18.2-1  xfce4-power-manager-4.18.0-1
               xfce4-pulseaudio-plugin-0.4.5-1  xfce4-screenshooter-1.10.3-1
               xfce4-sensors-plugin-1.4.4-1  xfce4-session-4.18.0-1
               xfce4-settings-4.18.1-1  xfce4-systemload-plugin-1.3.2-1
               xfce4-taskmanager-1.5.5-1  xfce4-whiskermenu-plugin-2.7.2-1
               xfce4-xkb-plugin-0.8.3-1  xfconf-4.18.0-1  xfdesktop-4.18.1-1
               xfsprogs-6.1.1-2  xfwm4-4.18.0-1  xkeyboard-config-2.37-1
               xmlsec-1.2.37-1  xorg-bdftopcf-1.1.1-1  xorg-font-util-1.3.3-1
               xorg-fonts-encodings-1.0.6-1  xorg-server-21.1.7-1
               xorg-server-common-21.1.7-1  xorg-xhost-1.0.9-1
               xorg-xinit-1.4.2-1  xorg-xkbcomp-1.4.6-1  xorg-xkill-1.0.6-1
               xorg-xmessage-1.0.6-1  xorg-xmodmap-1.0.11-1  xorg-xprop-1.2.6-1
               xorg-xrandr-1.5.2-1  xorg-xset-1.2.5-1  xorgproto-2022.2-1
               xxhash-0.8.1-3  xz-5.4.1-1  yasm-1.3.0-6  yay-11.3.2-1
               yelp-42.2-1  yelp-xsl-42.1-1  zbar-0.23.90-1  zenity-3.44.0-1
               zensu-0.3-7  zita-alsa-pcmi-0.6.1-1  zlib-1:1.2.13-2  zsh-5.9-3
               zstd-1.5.2-8  zvbi-0.2.40-1  zxing-cpp-2.0.0-1

Total Download Size:      82.92 MiB
Total Installed Size:  10363.65 MiB
Net Upgrade Size:        483.15 MiB

:: Proceed with installation? [Y/n] Y
:: Retrieving packages...
 firefox-110.0-0....    82.9 MiB  25.4 MiB/s 00:03 [######################] 100%
(932/932) checking keys in keyring                 [######################] 100%
(932/932) checking package integrity               [######################] 100%
(932/932) loading package files                    [######################] 100%
(932/932) checking for file conflicts              [######################] 100%
error: failed to commit transaction (conflicting files)
ruby-bundler: /usr/bin/bundle exists in filesystem
ruby-bundler: /usr/bin/bundler exists in filesystem
ruby-ruby2_keywords: /usr/lib/ruby/gems/3.0.0/gems/ruby2_keywords-0.0.5/LICENSE exists in filesystem
ruby-ruby2_keywords: /usr/lib/ruby/gems/3.0.0/gems/ruby2_keywords-0.0.5/README.md exists in filesystem
ruby-ruby2_keywords: /usr/lib/ruby/gems/3.0.0/gems/ruby2_keywords-0.0.5/lib/ruby2_keywords.rb exists in filesystem
ruby-ruby2_keywords: /usr/lib/ruby/gems/3.0.0/specifications/ruby2_keywords-0.0.5.gemspec exists in filesystem
ruby-racc: /usr/bin/racc exists in filesystem
Errors occurred, no packages were upgraded

so you have also exist in filesystem errors, so use overwrite:

sudo pacman --sysroot /mnt -S ruby-bundler ruby-ruby2_keywords ruby-racc --overwrite '*'

then run again the update:

sudo pacman --sysroot /mnt -Syu

if there were no errors, then install the kernel 5.15

1 Like

it looks like the update went without any errors, just warnings:

[manjaro@manjaro ~]$ sudo pacman --sysroot /mnt -Syu
:: Synchronizing package databases...
 core is up to date
 extra is up to date
 community is up to date
 multilib is up to date
:: Starting full system upgrade...
:: Replace at-spi2-atk with extra/at-spi2-core? [Y/n] Y
:: Replace atk with extra/at-spi2-core? [Y/n] Y
:: Replace steam-manjaro with multilib/steam? [Y/n] Y
resolving dependencies...
looking for conflicting packages...
warning: dependency cycle detected:
warning: mesa will be installed before its libglvnd dependency
warning: dependency cycle detected:
warning: lib32-mesa will be installed before its lib32-libglvnd dependency
warning: dependency cycle detected:
warning: rubygems will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-abbrev will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-base64 will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-benchmark will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-bigdecimal will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-cgi will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-csv will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-date will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-delegate will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-did_you_mean will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-digest will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-drb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-drb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-english will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-erb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-etc will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fcntl will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fiddle will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-fileutils will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-find will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-forwardable will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-getoptlong will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-console will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-nonblock will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-io-wait will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-ipaddr will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-irb will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-reline will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-json will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-logger will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-mutex_m will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-net-http will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-uri will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-open-uri will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-stringio will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-time will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-psych will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-rdoc will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-tmpdir will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-stdlib will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-stdlib will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-minitest will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-power_assert will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-rake will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-test-unit will be installed before its ruby dependency
warning: dependency cycle detected:
warning: ruby-bundledgems will be installed before its ruby dependency

Packages (932) a52dec-0.7.4-12  aalib-1.4rc5-15  abseil-cpp-20220623.1-1
               acpid-2.0.34-1  adwaita-cursors-43-2  adwaita-icon-theme-43-2
               alsa-card-profiles-1:0.3.65-6  alsa-lib-1.2.8-1
               alsa-ucm-conf-1.2.8-1  alsa-utils-1.2.8-1
               amd-ucode-20230117.7e4f0ed-1  android-tools-33.0.3-3
               android-udev-20230104-1  aom-3.6.0-1  apparmor-3.1.2-1
               appstream-0.16.0-1  appstream-glib-0.8.2-1
               archlinux-appstream-data-20230115-1
               arm-none-eabi-binutils-2.39-2  arm-none-eabi-gcc-12.2.0-1
               aspell-0.60.8-3  at-spi2-atk-2.38.0-1 [removal]
               at-spi2-core-2.46.0-2  atk-2.38.0-1 [removal]  atkmm-2.28.3-1
               audacious-4.2-3  audacious-plugins-4.2-3  audit-3.0.9-2
               avr-binutils-2.39-2  avr-gcc-12.2.0-1  avrdude-1:7.0-3
               b43-fwcutter-019-4  babl-0.1.98-1  bamf-0.5.6-1
               bash-completion-2.11-3  binutils-2.40-4  blueman-2.3.5-1
               bluez-5.66-1  bluez-libs-5.66-1  boost-libs-1.81.0-2
               botan-2.19.3-1  brotli-1.0.9-9  btrfs-progs-6.1.3-1
               bubblewrap-0.7.0-1  bzip2-1.0.8-5  ca-certificates-20220905-1
               ca-certificates-mozilla-3.87-1  ca-certificates-utils-20220905-1
               cairo-1.17.8-2  cairomm-1.14.4-1  catfish-4.16.4-1
               chromaprint-1.5.1-6  cifs-utils-7.0-2  ckbcomp-1.212-1
               clang-15.0.7-1  clucene-2.3.3.4-14  cmake-3.25.2-1
               compiler-rt-15.0.7-1  coreutils-9.1-3  cpupower-6.1-1
               cryptsetup-2.6.0-1  cups-1:2.4.2-5  cups-filters-1.28.17-1
               cups-pdf-3.0.1-7  cups-pk-helper-0.2.7-1  curl-7.87.0-3
               cython-0.29.33-1  db-6.2.32-1  db5.3-5.3.28-2  dconf-0.40.0-2
               default-cursors-2-1  device-mapper-2.03.18-4
               dhclient-4.4.3.P1-1  discord-0.0.25-1  djvulibre-3.5.28-4
               dmraid-1.0.0.rc16.3-14  dnsmasq-2.89-1  dosfstools-4.2-3
               double-conversion-3.2.1-1  duktape-2.7.0-5  e2fsprogs-1.46.6-1
               ecryptfs-utils-111-7  efibootmgr-18-1
               elementary-icon-theme-7.2.0-1  elfutils-0.188-3  enchant-2.3.3-2
               evince-43.1-2  exiv2-0.27.6-1  exo-4.18.0-1  expat-2.5.0-1
               f2fs-tools-1.15.0-2  faad2-2.10.1-1  fakeroot-1.31-1
               ffmpeg-2:5.1.2-1  file-5.44-1  filesystem-2023.01.30-1
               findutils-4.9.0-2  firefox-110.0-0.1  flac-1.4.2-1
               flatpak-1:1.15.2-1  flex-2.6.4-4  fluidsynth-2.3.1-1
               fmt-9.1.0-4  fontconfig-2:2.14.2-1  foomatic-db-3:20230115-1
               foomatic-db-gutenprint-ppds-5.3.4-2
               foomatic-db-nonfree-3:20230115-1
               foomatic-db-nonfree-ppds-3:20230115-1
               foomatic-db-ppds-3:20230115-1  freeglut-3.4.0-1
               fuse-common-3.13.0-1  fuse3-3.13.0-1  game-devices-udev-0.18-1
               garcon-4.18.0-1  gawk-5.2.1-1  gc-8.2.2-1  gcab-1.5-1
               gcc-12.2.1-2  gcc-libs-12.2.1-2  gcr-3.41.1-3  gcr-4-4.0.0-1
               gd-2.3.3-6  gdk-pixbuf2-2.42.10-2  gegl-0.4.40-4
               geoclue-2.7.0-1  geocode-glib-3.26.4-2
               geocode-glib-common-3.26.4-2  gettext-0.21.1-2
               ghostscript-10.0.0-4  gimp-2.10.32-3  git-2.39.1-1  glew-2.2.0-6
               glib-networking-1:2.74.0-1  glib2-2.74.5-1  glibc-2.37-2
               glibmm-2.66.5-1  glibmm-2.68-2.74.0-1  glslang-11.13.0-2
               gnome-desktop-1:43.1-1  gnome-desktop-4-1:43.1-1
               gnome-desktop-common-1:43.1-1  gnome-keyring-1:42.1-2
               gnome-menus-3.36.0-2  gnupg-2.2.40-1  gnutls-3.7.8-5
               gobject-introspection-runtime-1.74.0-1  gpgme-1.18.0-2
               gptfdisk-1.0.9-2  graphviz-7.1.0-1  grep-3.8-2
               grub-2.06.r261.g2f4430cc0-3  grub-btrfs-4.12-2
               grub-theme-manjaro-20.2-13  gsettings-desktop-schemas-43.0-1
               gsm-1.0.22-1  gspell-1.12.0-2  gssdp-1.6.2-1  gst-libav-1.22.0-3
               gst-plugins-bad-1.22.0-3  gst-plugins-bad-libs-1.22.0-3
               gst-plugins-base-1.22.0-3  gst-plugins-base-libs-1.22.0-3
               gst-plugins-good-1.22.0-3  gst-plugins-ugly-1.22.0-3
               gstreamer-1.22.0-3  gtk-update-icon-cache-1:4.8.3-3
               gtk3-1:3.24.36-1  gtk4-1:4.8.3-3  gtkhash-1.5-2
               gtkhash-thunar-1.5-2  gtkmm3-3.24.7-1
               gtksourceview3-1:3.24.11+r28+g73e57b57-1  gtksourceview4-4.8.4-1
               guile-3.0.9-1  gupnp-1:1.6.3-1  gupnp-igd-1.2.0-3
               gutenprint-5.3.4-2  gvfs-1.50.3-1  gvfs-afc-1.50.3-1
               gvfs-gphoto2-1.50.3-1  gvfs-mtp-1.50.3-1  gvfs-nfs-1.50.3-1
               gvfs-smb-1.50.3-1  harfbuzz-6.0.0-1  harfbuzz-icu-6.0.0-1
               hdparm-9.65-1  hexchat-2.16.1-3  hidapi-0.13.1-1
               hplip-1:3.22.10-3  htop-3.2.2-1  hunspell-1.7.2-1
               hwdata-0.366-1  hwinfo-22.2-2  hwloc-2.8.0-1  hyphen-2.8.8-5
               iana-etc-20221215-1  ibus-1.5.27-1  icu-72.1-2  ijs-0.35-5
               imagemagick-7.1.0.61-1  imath-3.1.6-2  imlib2-1.10.0-3
               inetutils-2.3-1  inxi-3.3.25.1-1  iproute2-6.1.0-4
               iptables-1:1.8.9-1  iputils-20221126-1  iso-codes-4.12.0-1
               jack2-1.9.21-3  jasper-4.0.0-1  java-environment-common-3-5
               java-runtime-common-3-5  jdk8-openjdk-8.362.u09-1
               jre8-openjdk-8.362.u09-1  jre8-openjdk-headless-8.362.u09-1
               kauth-5.102.0-1  kcoreaddons-5.102.0-1  kguiaddons-5.102.0-1
               kitemmodels-5.102.0-1  kmod-30-3  krb5-1.20.1-1  kvantum-1.0.9-0
               kwayland-5.102.0-1  kwindowsystem-5.102.0-1  lame-3.100-4
               languagetool-6.0-1  lcms2-2.14-2  ldb-2:2.6.1-2  ldns-1.8.3-2
               less-1:608-2  lib32-alsa-lib-1.2.8-1  lib32-brotli-1.0.9-5
               lib32-bzip2-1.0.8-3  lib32-curl-7.87.0-1
               lib32-e2fsprogs-1.46.6-1  lib32-expat-2.5.0-2
               lib32-freeglut-3.4.0-1  lib32-gcc-libs-12.2.1-2
               lib32-glew-2.2.0-4  lib32-glibc-2.37-2  lib32-icu-72.1-2
               lib32-krb5-1.20.1-1  lib32-libcap-2.66-1  lib32-libdrm-2.4.114-1
               lib32-libelf-0.188-1  lib32-libffi-3.4.4-1
               lib32-libgcrypt-1.10.1-2  lib32-libglvnd-1.6.0-1
               lib32-libgpg-error-1.46-1  lib32-libice-1.1.1-1
               lib32-libidn2-2.3.4-2  lib32-libldap-2.6.3-3
               lib32-libpciaccess-0.17-1  lib32-libpsl-0.21.1-3
               lib32-libsm-1.2.4-1  lib32-libssh2-1.10.0-2
               lib32-libtasn1-4.19.0-1  lib32-libtirpc-1.3.3-2
               lib32-libunistring-1.1-1  lib32-libunwind-1.6.2-2
               lib32-libva-2.17.0-1  lib32-libva-mesa-driver-22.3.5-1
               lib32-libva-vdpau-driver-0.7.4-7  lib32-libx11-1.8.3-1.1
               lib32-libxau-1.0.11-1  lib32-libxcb-1.15-2
               lib32-libxcrypt-4.4.33-1  lib32-libxcrypt-compat-4.4.33-1
               lib32-libxdamage-1.1.6-1  lib32-libxdmcp-1.1.4-1
               lib32-libxext-1.3.5-1  lib32-libxfixes-6.0.0-2
               lib32-libxi-1.8-2  lib32-libxml2-2.10.3-2  lib32-libxmu-1.1.4-1
               lib32-libxrandr-1.5.3-1  lib32-libxrender-0.9.11-1
               lib32-libxshmfence-1.3.2-1  lib32-libxxf86vm-1.1.5-1
               lib32-llvm-libs-15.0.7-1
               lib32-lm_sensors-1:3.6.0.r41.g31d1f125-2  lib32-mesa-22.3.5-1
               lib32-mesa-vdpau-22.3.5-1  lib32-ncurses-6.4-1
               lib32-nspr-4.35-1  lib32-nss-3.87-1  lib32-readline-8.2.001-2
               lib32-sqlite-3.40.1-1  lib32-systemd-252.5-1
               lib32-util-linux-2.38.1-1  lib32-vulkan-icd-loader-1.3.240-1
               lib32-vulkan-intel-22.3.5-1  lib32-vulkan-radeon-22.3.5-1
               lib32-wayland-1.21.0-1  lib32-xz-5.4.1-1  lib32-zlib-1.2.13-2
               libadwaita-1:1.2.1-1  libappindicator-gtk3-12.10.0.r298-1
               libarchive-3.6.2-2  libass-0.17.0-1
               libasyncns-1:0.8+r3+g68cd5af-2  libatomic_ops-7.6.14-1
               libavif-0.11.1-1  libayatana-appindicator-0.5.92-1
               libayatana-indicator-0.9.3-1  libblockdev-2.28-1
               libbluray-1.3.4-1  libbpf-1.0.1-1  libbs2b-3.1.0-8
               libbsd-0.11.7-1  libcamera-0.0.4-1
               libcanberra-1:0.30+r2+gc0620e4-3  libcap-2.66-1  libcddb-1.3.2-7
               libcdio-2.1.0-3  libcdr-0.1.7-5
               libcloudproviders-0.3.1+r8+g3a229ee-1  libcups-1:2.4.2-5
               libdatrie-0.2.13-2  libde265-1.0.11-1  libdiscid-0.6.2-4
               libdrm-2.4.114-1  libe-book-0.1.3-13  libebml-1.4.4-1
               libedit-20210910_3.1-2  libelf-0.188-3  libepubgen-0.1.1-4
               libetonyek-0.1.10-3  libevdev-1.13.0-1  libevent-2.1.12-4
               libffi-3.4.4-1  libfontenc-1.1.7-1  libgcrypt-1.10.1-2
               libgee-0.20.6-1  libgit2-1:1.5.1-2  libglvnd-1.6.0-1
               libgnomekbd-1:3.28.1-1  libgpg-error-1.46-2  libgphoto2-2.5.30-2
               libgpod-0.8.3-14  libgsf-1.14.50-1  libgusb-0.4.5-1
               libgxps-0.3.2-3  libhandy-1.8.1-1  libheif-1.14.2-1
               libibus-1.5.27-1  libical-3.0.16-4  libice-1.1.1-1
               libidn2-2.3.4-3  libiec61883-1.2.0-7  libieee1284-0.2.11-14
               libimagequant-4.0.4-1  libimobiledevice-1.3.0-6  libinih-56-1
               libinput-1.22.1-1  libixion-0.17.0-4  libjpeg-turbo-2.1.4-2
               libkeybinder3-0.3.2-4  libksba-1.6.3-1  libldap-2.6.3-2
               liblouis-3.24.0-1  libltc-1.3.2-1  libmalcontent-0.11.0-1
               libmatroska-1.7.1-1  libmbim-1.28.2-1  libmfx-23.1.0-1
               libmm-glib-1.20.4-1  libmodplug-0.8.9.0-5  libmpc-1.3.1-1
               libmspub-0.1.4-13  libmusicbrainz5-5.1.0-5  libmwaw-0.3.21-3
               libmythes-1:1.2.5-1  libnewt-0.52.23-1  libnfs-5.0.2-1
               libnftnl-1.2.4-1  libnghttp2-1.51.0-1  libnice-0.1.21-1
               libnl-3.7.0-3  libnm-1.40.12-1  libnma-1.10.6-1
               libnma-common-1.10.6-1  libnotify-0.8.1-1
               libnumbertext-1.0.11-1  libodfgen-0.1.8-2
               libomxil-bellagio-0.9.3-4  libopenmpt-0.6.8-1
               libopenraw-0.3.3-1  liborcus-0.17.2-4  libpamac-11.4.1-3
               libpamac-flatpak-plugin-11.4.1-2  libpamac-snap-plugin-11.4.1-2
               libpcap-1.10.3-1  libpciaccess-0.17-1  libpipeline-1.5.7-1
               libplacebo-5.229.1-2  libplist-2.2.0-6  libpng-1.6.39-1
               libproxy-0.4.18-2  libpsl-0.21.2-1  libpulse-16.1-3
               libpurple-2.14.12-1  libqmi-1.32.2-1  libqxp-0.0.2-9
               libraqm-0.10.0-1  libraw-0.21.1-1  libreoffice-fresh-7.5.0-1
               librevenge-0.0.5-2  librsvg-2:2.55.1-1  libsasl-2.1.28-4
               libshout-1:2.4.6-2  libsidplayfp-2.4.2-1  libsigc++-2.12.0-1
               libsigc++-3.0-3.4.0-1  libsm-1.2.4-1  libsndfile-1.2.0-1
               libsoup-2.74.3-1  libsoup3-3.2.2-1  libsoxr-0.1.3-3
               libspectre-0.2.12-1  libspiro-1:20221101-1  libsrtp-1:2.5.0-1
               libssh-0.10.4-3  libssh2-1.10.0-3  libsynctex-2022.62885-3
               libsysprof-capture-3.46.0-4  libtasn1-4.19.0-1  libteam-1.31-7
               libtg_owt-0.git20.5098730-1  libthai-0.1.29-2  libtiff-4.5.0-1
               libtirpc-1.3.3-2  libtool-2.4.7+4+g1ec8fa28-2
               libunistring-1.1-2  libunwind-1.6.2-2  libupnp-1.14.15-1
               liburcu-0.13.2-1  liburing-2.3-1  libusb-compat-0.1.8-1
               libuv-1.44.2-1  libva-2.17.0-1  libva-mesa-driver-22.3.5-1
               libvisio-0.1.7-8  libvpx-1.12.0-2  libwacom-2.6.0-1
               libwbclient-4.17.5-1  libwebp-1.3.0-2  libwmf-0.2.12-3
               libwnck3-43.0-3  libwpd-0.10.3-4  libwpe-1.14.1-1
               libwpg-0.3.3-4  libwps-0.4.13-1  libx11-1.8.3-6  libxau-1.0.11-1
               libxcb-1.15-2  libxcomposite-0.4.6-1  libxcrypt-4.4.33-1
               libxcrypt-compat-4.4.33-1  libxcursor-1.2.1-3  libxcvt-0.1.2-1
               libxdamage-1.1.6-1  libxdmcp-1.1.4-1  libxext-1.3.5-1
               libxfce4ui-4.18.2-1  libxfce4util-4.18.1-1  libxfixes-6.0.0-2
               libxfont2-2.0.6-1  libxft-2.3.7-1  libxi-1.8-2
               libxinerama-1.1.5-1  libxkbcommon-1.5.0-1
               libxkbcommon-x11-1.5.0-1  libxkbfile-1.1.2-1  libxml2-2.10.3-2
               libxmlb-0.3.10-1  libxmu-1.1.4-1  libxpm-3.5.15-1
               libxpresent-1.0.1-1  libxrandr-1.5.3-1  libxrender-0.9.11-1
               libxres-1.2.2-1  libxshmfence-1.3.2-1  libxslt-1.1.37-2
               libxtst-1.2.4-1  libxv-1.0.12-1  libxxf86vm-1.1.5-1
               libyaml-0.2.5-2  libzmf-0.0.2-13  lightdm-1:1.32.0-4
               lightdm-gtk-greeter-1:2.0.8-3  lilv-0.24.20-1
               linux-api-headers-6.1.9-1  linux-firmware-20230117.7e4f0ed-1
               linux-firmware-whence-20230117.7e4f0ed-1  linux510-5.10.167-1
               lirc-1:0.10.2-2  llvm-15.0.7-1  llvm-libs-15.0.7-1
               lm_sensors-1:3.6.0.r41.g31d1f125-2  lmdb-0.9.30-1
               logrotate-3.21.0-2  lpsolve-5.5.2.11-2  lsof-4.98.0-1
               luajit-2.1.0.beta3.r467.gd0e88930-1  lv2-1.18.10-1
               lvm2-2.03.18-4  lz4-1:1.9.4-1  lzo-2.10-5  m4-1.4.19-2
               make-4.4-1  man-db-2.11.2-1  man-pages-6.02-1
               manjaro-alsa-20221002-1  manjaro-hello-0.7.0-2
               manjaro-printer-20220924-1  manjaro-pulse-20221015-2
               manjaro-release-22.0.3-1  manjaro-settings-manager-0.5.7-13
               manjaro-settings-manager-notifier-0.5.7-13
               matcha-gtk-theme-20221115-1  mbedtls-2.28.2-1  memtest86+-6.10-1
               mesa-22.3.5-1  mesa-vdpau-22.3.5-1  mhwd-0.6.5-23
               mhwd-db-0.6.5-23  mhwd-nvidia-525.89.02-1
               mhwd-nvidia-390xx-390.157-1  mhwd-nvidia-470xx-470.161.03-2
               miniupnpc-2.2.4-1  minizip-1:1.2.13-2  mkinitcpio-34-1.1
               mktorrent-1.1-6  mobile-broadband-provider-info-20221107-2
               modemmanager-1.20.4-1  mousepad-0.6.0-1  mpfr-4.2.0-3
               mpg123-1.31.2-2  mythes-en-20221102-2  nano-7.2-1  ncurses-6.4-1
               ndctl-75-1  neon-0.32.5-1  net-snmp-5.9.1-5  netpbm-10.73.42-2
               nettle-3.8.1-1  network-manager-applet-1.30.0-1
               networkmanager-1.40.12-1  networkmanager-openvpn-1.10.2-1
               nfs-utils-2.6.2-1  nfsidmap-2.6.2-1  nftables-1:1.0.6-1
               nm-connection-editor-1.30.0-1  noto-fonts-20230201-1
               nspr-4.35-1  nss-3.87-1  ntfs-3g-2022.10.3-1  ntp-4.2.8.p15-3
               nuspell-5.1.2-2  obs-studio-29.0.2-1
               onlyoffice-desktopeditors-7.3.0-1  openal-1.23.0-1
               opencore-amr-0.1.6-1  openjpeg2-2.5.0-2  openmpi-4.1.4-4
               openpmix-4.2.3-1  openssh-9.2p1-1  openssl-1.1-1.1.1.t-1
               openvpn-2.6.0-1  orc-0.4.33-1  os-prober-1.81-1  ostree-2022.7-1
               p7zip-1:17.04-4  pacman-6.0.2-7
               pacman-mirrors-4.23.2+2+g2f58b3c-3  pamac-cli-10.4.3-3
               pamac-gtk-10.4.3-3  pambase-20221020-1  pango-1:1.50.12-1
               pangomm-2.46.3-1  papirus-icon-theme-20230104-1
               pavucontrol-1:5.0+r61+gee77d86-2  pciutils-3.9.0-2  pcre-8.45-3
               pcre2-10.42-2  pcsclite-1.9.9-2  perl-5.36.0-3
               perl-alien-build-2.77-1  perl-alien-libxml2-0.19-1
               perl-clone-0.46-1  perl-encode-locale-1.05-10
               perl-ffi-checklib-0.31-2  perl-file-desktopentry-0.22-10
               perl-file-mimeinfo-0.33-1  perl-html-parser-3.81-1
               perl-html-tagset-3.20-13  perl-http-date-6.05-6
               perl-http-message-6.44-1  perl-http-negotiate-6.01-11
               perl-libwww-6.67-1  perl-lwp-mediatypes-6.04-3
               perl-path-tiny-0.144-1  perl-uri-5.17-1
               perl-www-robotrules-6.02-11  perl-xml-libxml-2.0208-1
               perl-xml-namespacesupport-1.12-5  perl-xml-sax-base-1.09-5
               pidgin-2.14.12-1  pinentry-1.2.1-1  pipewire-1:0.3.65-6
               pixman-0.42.2-1  pkcs11-helper-1.29.0-2  polkit-122-1
               poppler-23.02.0-1  poppler-data-0.4.12-1  poppler-glib-23.02.0-1
               poppler-qt5-23.02.0-1  popt-1.19-1  postgresql-libs-15.1-3
               powertop-2.15-1  ppp-2.4.9-3  pptpclient-1.10.0-3
               protobuf-21.12-1  protobuf-c-1.4.1-1  psmisc-23.6-1
               pulseaudio-16.1-3  pulseaudio-bluetooth-16.1-3
               pulseaudio-equalizer-16.1-3  pulseaudio-jack-16.1-3
               pulseaudio-lirc-16.1-3  pulseaudio-rtp-16.1-3
               pulseaudio-zeroconf-16.1-3  pyside6-6.4.2-5  python-3.10.9-1
               python-appdirs-1.4.4-7  python-attrs-22.2.0-1
               python-autocommand-2.2.2-1  python-cachecontrol-1:0.12.11-1
               python-cairo-1.23.0-3  python-certifi-2022.12.07-1
               python-chardet-5.1.0-1  python-colorama-0.4.6-1
               python-commonmark-0.9.1-6  python-cryptography-39.0.1-1
               python-distlib-0.3.6-1  python-distro-1.8.0-2
               python-dnspython-1:2.2.1-2  python-docutils-1:0.19-2
               python-dotty-dict-1.3.1-2  python-fastjsonschema-2.16.2-1
               python-gobject-3.42.2-1  python-idna-3.4-1
               python-importlib-metadata-5.0.0-3  python-inflect-6.0.2-1
               python-jaraco.context-4.3.0-1  python-jaraco.functools-3.5.2-1
               python-jaraco.text-3.11.1-1  python-jsonschema-4.17.3-1
               python-manjaro-sdk-0.9-1  python-markdown-3.4.1-2
               python-markdown-it-py-2.1.0-1  python-mdurl-0.1.2-2
               python-more-itertools-9.0.0-1  python-msgpack-1.0.4-1
               python-nspektr-0.4.0-2  python-ordered-set-4.1.0-1
               python-packaging-23.0-1  python-pillow-9.4.0-2
               python-pip-22.3.1-1  python-platformdirs-2.6.2-1
               python-psutil-5.9.4-1  python-pydantic-1.10.4-1
               python-pygments-2.14.0-2  python-pyopenssl-23.0.0-1
               python-pyqt5-5.15.9-1  python-pyqt5-sip-12.11.1-1
               python-pyrsistent-0.19.3-1  python-reportlab-3.6.12-2
               python-requests-2.28.1-1  python-resolvelib-0.9.0-1
               python-retrying-1.3.3-15  python-rich-13.3.1-1
               python-setuptools-1:67.2.0-1  python-six-1.16.0-6
               python-systemd-235-1  python-tenacity-8.2.1-1
               python-termcolor-2.2.0-1  python-toml-0.10.2-8
               python-trove-classifiers-2023.2.8-1
               python-typing_extensions-4.4.0-1  python-uc-micro-py-1.0.1-3
               python-urllib3-1.26.12-1  python-validate-pyproject-0.12.1-1
               python-wheel-0.38.4-1  python-zipp-3.13.0-1  qmk-1.1.1-1
               qpdf-11.2.0-1  qrencode-4.1.1-2  qt5-base-5.15.8+kde+r181-1
               qt5-declarative-5.15.8+kde+r24-2
               qt5-imageformats-5.15.8+kde+r9-1  qt5-svg-5.15.8+kde+r8-1
               qt5-translations-5.15.8-1  qt5-wayland-5.15.8+kde+r58-1
               qt5-x11extras-5.15.8-1  qt6-5compat-6.4.2-1  qt6-base-6.4.2-1
               qt6-declarative-6.4.2-1  qt6-imageformats-6.4.2-1
               qt6-svg-6.4.2-1  qt6-translations-6.4.2-1  qt6-wayland-6.4.2-1
               r-4.2.2-2  raptor-2.0.15-21  rav1e-0.6.3-1  readline-8.2.001-2
               redshift-1.12-6  reiserfsprogs-3.6.27-4  rhash-1.4.3-1
               rpcbind-1.2.6-3  rsync-3.2.7-3  rtkit-0.13-2  ruby-3.0.5-1
               ruby-abbrev-0.1.0-4  ruby-addressable-2.8.1-1
               ruby-base64-0.1.1-4  ruby-benchmark-0.2.0-4
               ruby-bigdecimal-3.1.2-4  ruby-bundledgems-3.0.5-1
               ruby-cgi-0.3.6-1  ruby-csv-3.2.5-4  ruby-date-3.2.2-4
               ruby-delegate-0.2.0-4  ruby-did_you_mean-1.6.1-4
               ruby-digest-3.1.1-1  ruby-drb-2.1.0-5  ruby-english-0.7.1-5
               ruby-erb-4.0.2-2  ruby-etc-1.3.0-6  ruby-eventmachine-1.2.7-6
               ruby-fcntl-1.0.1-4  ruby-fiddle-1.1.0-4  ruby-fileutils-1.6.0-4
               ruby-find-0.1.1-4  ruby-forwardable-1.3.2-6
               ruby-getoptlong-0.1.1-3  ruby-i18n-1.12.0-1
               ruby-io-console-0.5.11-3  ruby-io-nonblock-0.1.0-3
               ruby-io-wait-0.2.3-4  ruby-ipaddr-1.2.4-3  ruby-irb-1.4.2-1
               ruby-jekyll-sass-converter-2.2.0-1  ruby-json-2.6.3-1
               ruby-kramdown-parser-gfm-1.1.0-2  ruby-listen-3.8.0-2
               ruby-logger-1.5.1-3  ruby-minitest-5.16.3-1  ruby-mocha-1.16.1-1
               ruby-mutex_m-0.1.1-3  ruby-net-http-0.2.2-2
               ruby-open-uri-0.2.0-3  ruby-power_assert-2.0.2-1
               ruby-psych-4.0.6-1  ruby-public_suffix-5.0.0-1
               ruby-rake-13.0.6-1  ruby-rb-fsevent-0.11.2-1  ruby-rdoc-6.4.0-4
               ruby-reline-0.3.1-2  ruby-stdlib-3.0.5-1  ruby-stringio-3.0.2-4
               ruby-test-unit-3.5.7-1  ruby-time-0.2.0-4  ruby-tmpdir-0.1.2-3
               ruby-tzinfo-2.0.5-1  ruby-unicode-display_width-2.4.2-1
               ruby-uri-0.11.0-5  ruby-zeitwerk-2.6.1-1  rubygems-3.3.25-1
               s-nail-14.9.24-2  samba-4.17.5-1  sane-1.1.1-2  sbc-2.0-1
               sdl2-2.26.3-1  sed-4.9-1  serd-0.30.16-1  shaderc-2022.4-1
               shadow-4.13-2  shared-mime-info-2.2+13+ga2ffb28-1
               shiboken6-6.4.2-5  slang-2.3.3-2  smbclient-4.17.5-1
               snapd-2.58.2-1  snapd-glib-1.63-3  sof-firmware-2.2.4-1
               sord-0.16.14-1  soundtouch-2.3.2-1  spandsp-0.0.6-4
               spectre-meltdown-checker-0.45+1+gb68ebe6-2  spirv-tools-2022.4-1
               splix-2.0.0-19  sqlite-3.40.1-1  squashfs-tools-4.5.1-2
               sratom-0.6.14-1  srt-1.5.1-3  steam-1.0.0.75-2
               steam-manjaro-1.0.0.74-1 [removal]  strawberry-1.0.14-2
               sudo-1.9.12.p2-1  suitesparse-7.0.1-2  svt-av1-1.4.1-1
               systemd-252.5-1  systemd-libs-252.5-1
               systemd-sysvcompat-252.5-1  taglib-1.13-1  talloc-2.4.0-2
               tcl-8.6.13-1  tdb-1.4.8-1  telegram-desktop-4.6.1-1
               terminus-font-4.49.1-5  tevent-1:0.14.0-1  texinfo-7.0.2-2
               thin-provisioning-tools-1.0.0-1  thunar-4.18.3-1
               thunar-media-tags-plugin-0.4.0-1  thunar-volman-4.18.0-1
               thunarx-python-0.5.2-3  thunderbird-102.7.2-1
               timeshift-22.11.2-1  tlp-1.5.0-5  tpm2-tss-3.2.0-3
               tracker3-3.4.2-2  tumbler-4.18.0-1  tzdata-2022g-2
               unrar-1:6.2.5-1  unzip-6.0-19  upower-1.90.0-3  usbmuxd-1.1.1-2
               usbutils-015-2  util-linux-2.38.1-1  util-linux-libs-2.38.1-1
               vi-1:070224-6  vlc-3.0.18-6  vpnc-1:0.5.3.r506.r204-2
               vte-common-0.70.2-1  vte3-0.70.2-1  vulkan-headers-1:1.3.240-1
               vulkan-icd-loader-1.3.240-1  vulkan-intel-22.3.5-1
               vulkan-radeon-22.3.5-1  wavpack-5.6.0-1  wayland-1.21.0-2
               wayland-protocols-1.31-1  webkit2gtk-2.38.4-1
               webkit2gtk-4.1-2.38.4-1  wildmidi-0.4.5-1
               wireless-regdb-2022.08.12-1  woff2-1.0.2-4
               wpa_supplicant-2:2.10-8  wpebackend-fdo-1.14.0-1
               x264-3:0.164.r3095.baee400-4  xapp-2.4.2-1  xcb-proto-1.15.2-2
               xcb-util-0.4.1-1  xcb-util-cursor-0.1.4-1
               xcb-util-image-0.4.1-2  xcb-util-keysyms-0.4.1-4
               xcb-util-renderutil-0.3.10-1  xcb-util-wm-0.4.2-1
               xcursor-breeze-5.24.6-1  xdg-desktop-portal-1.16.0-1
               xdg-desktop-portal-gnome-43.1-1  xdg-desktop-portal-gtk-1.14.1-1
               xdg-user-dirs-0.18-1  xdg-utils-1.1.3+25+g8ae0263-1
               xf86-input-elographics-1.4.3-1  xf86-input-void-1.4.2-1
               xf86-input-wacom-1.1.0-1
               xf86-video-ati-1:19.1.0.r15.g7a6a34af-1
               xf86-video-intel-1:2.99.917+923+gb74b67f0-1
               xfce4-appfinder-4.18.0-1  xfce4-cpufreq-plugin-1.2.8-1
               xfce4-cpugraph-plugin-1.2.7-1  xfce4-notifyd-0.7.3-1
               xfce4-panel-4.18.2-1  xfce4-power-manager-4.18.0-1
               xfce4-pulseaudio-plugin-0.4.5-1  xfce4-screenshooter-1.10.3-1
               xfce4-sensors-plugin-1.4.4-1  xfce4-session-4.18.0-1
               xfce4-settings-4.18.1-1  xfce4-systemload-plugin-1.3.2-1
               xfce4-taskmanager-1.5.5-1  xfce4-whiskermenu-plugin-2.7.2-1
               xfce4-xkb-plugin-0.8.3-1  xfconf-4.18.0-1  xfdesktop-4.18.1-1
               xfsprogs-6.1.1-2  xfwm4-4.18.0-1  xkeyboard-config-2.37-1
               xmlsec-1.2.37-1  xorg-bdftopcf-1.1.1-1  xorg-font-util-1.3.3-1
               xorg-fonts-encodings-1.0.6-1  xorg-server-21.1.7-1
               xorg-server-common-21.1.7-1  xorg-xhost-1.0.9-1
               xorg-xinit-1.4.2-1  xorg-xkbcomp-1.4.6-1  xorg-xkill-1.0.6-1
               xorg-xmessage-1.0.6-1  xorg-xmodmap-1.0.11-1  xorg-xprop-1.2.6-1
               xorg-xrandr-1.5.2-1  xorg-xset-1.2.5-1  xorgproto-2022.2-1
               xxhash-0.8.1-3  xz-5.4.1-1  yasm-1.3.0-6  yay-11.3.2-1
               yelp-42.2-1  yelp-xsl-42.1-1  zbar-0.23.90-1  zenity-3.44.0-1
               zensu-0.3-7  zita-alsa-pcmi-0.6.1-1  zlib-1:1.2.13-2  zsh-5.9-3
               zstd-1.5.2-8  zvbi-0.2.40-1  zxing-cpp-2.0.0-1

Total Installed Size:  10361.80 MiB
Net Upgrade Size:        481.30 MiB

:: Proceed with installation? [Y/n] Y
(929/929) checking keys in keyring                 [######################] 100%
(929/929) checking package integrity               [######################] 100%
(929/929) loading package files                    [######################] 100%
(929/929) checking for file conflicts              [######################] 100%
(932/932) checking available disk space            [######################] 100%
:: Running pre-transaction hooks...
(1/5) Creating Timeshift snapshot before upgrade...
==> skipping timeshift-autosnap due skipRsyncAutosnap in /etc/timeshift-autosnap.conf set to TRUE.
(2/5) Removing linux initcpios...
(3/5) Remove Firefox Distribution Settings
(4/5) Save Linux kernel modules
(5/5) Remove Thunderbird Distribution Settings
:: Processing package changes...
(1/3) removing steam-manjaro                       [######################] 100%
(2/3) removing at-spi2-atk                         [######################] 100%
(3/3) removing atk                                 [######################] 100%
(  1/929) upgrading linux-api-headers              [######################] 100%
(  2/929) upgrading tzdata                         [######################] 100%
New optional dependencies for tzdata
    bash: for tzselect [installed]
    glibc: for zdump, zic [installed]
(  3/929) upgrading iana-etc                       [######################] 100%
(  4/929) upgrading filesystem                     [######################] 100%
(  5/929) upgrading glibc                          [######################] 100%
warning: /etc/locale.gen installed as /etc/locale.gen.pacnew
Generating locales...
  en_US.UTF-8... done
Generation complete.
(  6/929) upgrading a52dec                         [######################] 100%
(  7/929) upgrading xcb-proto                      [######################] 100%
(  8/929) upgrading libxdmcp                       [######################] 100%
(  9/929) upgrading libxau                         [######################] 100%
( 10/929) upgrading libxcb                         [######################] 100%
( 11/929) upgrading xorgproto                      [######################] 100%
( 12/929) upgrading libx11                         [######################] 100%
( 13/929) upgrading gcc-libs                       [######################] 100%
( 14/929) upgrading ncurses                        [######################] 100%
( 15/929) upgrading readline                       [######################] 100%
( 16/929) upgrading xz                             [######################] 100%
( 17/929) upgrading zlib                           [######################] 100%
( 18/929) upgrading lz4                            [######################] 100%
( 19/929) upgrading zstd                           [######################] 100%
( 20/929) upgrading libxcrypt                      [######################] 100%
( 21/929) upgrading util-linux-libs                [######################] 100%
( 22/929) upgrading e2fsprogs                      [######################] 100%
( 23/929) upgrading libsasl                        [######################] 100%
( 24/929) upgrading libldap                        [######################] 100%
( 25/929) upgrading libevent                       [######################] 100%
New optional dependencies for libevent
    python: event_rpcgen.py [installed]
( 26/929) upgrading krb5                           [######################] 100%
( 27/929) upgrading audit                          [######################] 100%
( 28/929) upgrading libtirpc                       [######################] 100%
( 29/929) upgrading pambase                        [######################] 100%
( 30/929) upgrading libcap                         [######################] 100%
( 31/929) upgrading libgpg-error                   [######################] 100%
( 32/929) upgrading libgcrypt                      [######################] 100%
( 33/929) upgrading libffi                         [######################] 100%
( 34/929) upgrading libtasn1                       [######################] 100%
( 35/929) upgrading systemd-libs                   [######################] 100%
( 36/929) upgrading aalib                          [######################] 100%
( 37/929) upgrading abseil-cpp                     [######################] 100%
( 38/929) upgrading acpid                          [######################] 100%
( 39/929) upgrading libsysprof-capture             [######################] 100%
( 40/929) upgrading bzip2                          [######################] 100%
( 41/929) upgrading pcre2                          [######################] 100%
( 42/929) upgrading glib2                          [######################] 100%
( 43/929) upgrading libpng                         [######################] 100%
( 44/929) upgrading libjpeg-turbo                  [######################] 100%
( 45/929) upgrading libtiff                        [######################] 100%
( 46/929) upgrading icu                            [######################] 100%
( 47/929) upgrading libxml2                        [######################] 100%
( 48/929) upgrading shared-mime-info               [######################] 100%
( 49/929) upgrading gdk-pixbuf2                    [######################] 100%
( 50/929) upgrading expat                          [######################] 100%
( 51/929) upgrading harfbuzz                       [######################] 100%
( 52/929) upgrading brotli                         [######################] 100%
( 53/929) upgrading fontconfig                     [######################] 100%
Rebuilding fontconfig cache...
( 54/929) upgrading libxext                        [######################] 100%
( 55/929) upgrading libxrender                     [######################] 100%
( 56/929) upgrading lzo                            [######################] 100%
( 57/929) upgrading pixman                         [######################] 100%
( 58/929) upgrading cairo                          [######################] 100%
( 59/929) upgrading libdatrie                      [######################] 100%
( 60/929) upgrading libthai                        [######################] 100%
( 61/929) upgrading libxft                         [######################] 100%
( 62/929) upgrading pango                          [######################] 100%
( 63/929) upgrading librsvg                        [######################] 100%
( 64/929) upgrading gtk-update-icon-cache          [######################] 100%
( 65/929) installing adwaita-cursors               [######################] 100%
( 66/929) upgrading adwaita-icon-theme             [######################] 100%
( 67/929) upgrading alsa-card-profiles             [######################] 100%
( 68/929) upgrading alsa-ucm-conf                  [######################] 100%
( 69/929) upgrading alsa-lib                       [######################] 100%
( 70/929) upgrading hwdata                         [######################] 100%
( 71/929) upgrading kmod                           [######################] 100%
( 72/929) upgrading pciutils                       [######################] 100%
New optional dependencies for pciutils
    curl: for update-pciids [installed]
    grep: for update-pciids [installed]
    which: for update-pciids [installed]
( 73/929) upgrading psmisc                         [######################] 100%
( 74/929) upgrading alsa-utils                     [######################] 100%
( 75/929) upgrading amd-ucode                      [######################] 100%
( 76/929) upgrading protobuf                       [######################] 100%
( 77/929) upgrading device-mapper                  [######################] 100%
( 78/929) upgrading popt                           [######################] 100%
( 79/929) upgrading cryptsetup                     [######################] 100%
( 80/929) upgrading libnftnl                       [######################] 100%
( 81/929) upgrading libnl                          [######################] 100%
( 82/929) upgrading libpcap                        [######################] 100%
( 83/929) upgrading iptables                       [######################] 100%
( 84/929) upgrading libunistring                   [######################] 100%
( 85/929) upgrading libidn2                        [######################] 100%
( 86/929) upgrading coreutils                      [######################] 100%
( 87/929) upgrading findutils                      [######################] 100%
( 88/929) upgrading ca-certificates-utils          [######################] 100%
( 89/929) upgrading ca-certificates-mozilla        [######################] 100%
( 90/929) upgrading ca-certificates                [######################] 100%
( 91/929) upgrading libnghttp2                     [######################] 100%
( 92/929) upgrading libpsl                         [######################] 100%
( 93/929) upgrading libssh2                        [######################] 100%
( 94/929) upgrading curl                           [######################] 100%
( 95/929) upgrading libelf                         [######################] 100%
( 96/929) upgrading shadow                         [######################] 100%
( 97/929) upgrading file                           [######################] 100%
( 98/929) upgrading util-linux                     [######################] 100%
( 99/929) upgrading systemd                        [######################] 100%
New optional dependencies for systemd
    curl: systemd-journal-upload, machinectl pull-tar and pull-raw [installed]
    gnutls: systemd-journal-gatewayd and systemd-journal-remote [installed]
    libbpf: support BPF programs [installed]
(100/929) upgrading android-udev                   [######################] 100%
(101/929) upgrading android-tools                  [######################] 100%
(102/929) upgrading aom                            [######################] 100%
(103/929) upgrading python                         [######################] 100%
(104/929) upgrading apparmor                       [######################] 100%
(105/929) upgrading libxi                          [######################] 100%
(106/929) upgrading libxfixes                      [######################] 100%
(107/929) upgrading libxtst                        [######################] 100%
(108/929) upgrading at-spi2-core                   [######################] 100%
(109/929) upgrading dconf                          [######################] 100%
(110/929) upgrading iso-codes                      [######################] 100%
(111/929) upgrading libcloudproviders              [######################] 100%
(112/929) upgrading nettle                         [######################] 100%
(113/929) upgrading gnutls                         [######################] 100%
(114/929) upgrading libcups                        [######################] 100%
(115/929) upgrading libpciaccess                   [######################] 100%
(116/929) upgrading libdrm                         [######################] 100%
(117/929) installing default-cursors               [######################] 100%
warning: /usr/share/icons/default/index.theme installed as /usr/share/icons/default/index.theme.pacnew
Optional dependencies for default-cursors
    adwaita-cursors: default cursor theme [installed]
(118/929) upgrading wayland                        [######################] 100%
(119/929) upgrading libxxf86vm                     [######################] 100%
(120/929) upgrading libxdamage                     [######################] 100%
(121/929) upgrading libxshmfence                   [######################] 100%
(122/929) upgrading libomxil-bellagio              [######################] 100%
(123/929) upgrading libunwind                      [######################] 100%
(124/929) upgrading libedit                        [######################] 100%
(125/929) upgrading llvm-libs                      [######################] 100%
(126/929) upgrading lm_sensors                     [######################] 100%
(127/929) upgrading vulkan-icd-loader              [######################] 100%
(128/929) upgrading lib32-glibc                    [######################] 100%
(129/929) upgrading lib32-vulkan-icd-loader        [######################] 100%
(130/929) upgrading mesa                           [######################] 100%
(131/929) upgrading libglvnd                       [######################] 100%
(132/929) upgrading libxcomposite                  [######################] 100%
(133/929) upgrading libxcursor                     [######################] 100%
(134/929) upgrading libxinerama                    [######################] 100%
(135/929) upgrading xkeyboard-config               [######################] 100%
(136/929) upgrading libxkbcommon                   [######################] 100%
(137/929) upgrading libxrandr                      [######################] 100%
(138/929) upgrading duktape                        [######################] 100%
(139/929) upgrading libproxy                       [######################] 100%
New optional dependencies for libproxy
    pacrunner: PAC proxy support (via pacrunner)
(140/929) upgrading gsettings-desktop-schemas      [######################] 100%
(141/929) upgrading glib-networking                [######################] 100%
(142/929) upgrading sqlite                         [######################] 100%
(143/929) upgrading libsoup3                       [######################] 100%
(144/929) upgrading tracker3                       [######################] 100%
(145/929) upgrading lcms2                          [######################] 100%
(146/929) upgrading gtk3                           [######################] 100%
(147/929) upgrading libyaml                        [######################] 100%
(148/929) upgrading libarchive                     [######################] 100%
(149/929) upgrading libksba                        [######################] 100%
(150/929) upgrading lib32-gcc-libs                 [######################] 100%
(151/929) upgrading lib32-libxcrypt                [######################] 100%
(152/929) upgrading lib32-e2fsprogs                [######################] 100%
(153/929) upgrading lib32-libldap                  [######################] 100%
(154/929) upgrading lib32-krb5                     [######################] 100%
(155/929) upgrading lib32-libtirpc                 [######################] 100%
(156/929) upgrading lib32-libcap                   [######################] 100%
(157/929) upgrading tpm2-tss                       [######################] 100%
(158/929) upgrading pinentry                       [######################] 100%
(159/929) upgrading gnupg                          [######################] 100%
NOTE: GnuPG's systemd sockets are now enabled in the vendor location /usr/lib/systemd/user/!
(160/929) upgrading gpgme                          [######################] 100%
(161/929) upgrading gettext                        [######################] 100%
(162/929) upgrading mpfr                           [######################] 100%
(163/929) upgrading gawk                           [######################] 100%
(164/929) upgrading grep                           [######################] 100%
(165/929) upgrading sed                            [######################] 100%
(166/929) upgrading fakeroot                       [######################] 100%
(167/929) installing db5.3                         [######################] 100%
(168/929) upgrading perl                           [######################] 100%
(169/929) upgrading python-urllib3                 [######################] 100%
(170/929) upgrading python-chardet                 [######################] 100%
(171/929) upgrading python-idna                    [######################] 100%
(172/929) upgrading python-requests                [######################] 100%
(173/929) upgrading python-certifi                 [######################] 100%
(174/929) upgrading pacman-mirrors                 [######################] 100%
(175/929) upgrading pacman                         [######################] 100%
(176/929) upgrading gcab                           [######################] 100%
(177/929) upgrading appstream-glib                 [######################] 100%
(178/929) upgrading archlinux-appstream-data       [######################] 100%
(179/929) upgrading arm-none-eabi-binutils         [######################] 100%
(180/929) upgrading libmpc                         [######################] 100%
(181/929) upgrading arm-none-eabi-gcc              [######################] 100%
(182/929) upgrading aspell                         [######################] 100%
(183/929) upgrading libsigc++                      [######################] 100%
(184/929) upgrading glibmm                         [######################] 100%
(185/929) upgrading atkmm                          [######################] 100%
(186/929) upgrading xcb-util-keysyms               [######################] 100%
(187/929) upgrading xcb-util-renderutil            [######################] 100%
(188/929) upgrading libice                         [######################] 100%
(189/929) upgrading libsm                          [######################] 100%
(190/929) upgrading libxmu                         [######################] 100%
(191/929) upgrading xorg-xset                      [######################] 100%
(192/929) upgrading xorg-xprop                     [######################] 100%
(193/929) upgrading xdg-utils                      [######################] 100%
(194/929) upgrading xcb-util-wm                    [######################] 100%
(195/929) upgrading xcb-util                       [######################] 100%
(196/929) upgrading xcb-util-image                 [######################] 100%
(197/929) upgrading libevdev                       [######################] 100%
(198/929) upgrading libwacom                       [######################] 100%
(199/929) upgrading libinput                       [######################] 100%
(200/929) upgrading libxkbcommon-x11               [######################] 100%
(201/929) upgrading double-conversion              [######################] 100%
(202/929) upgrading qt5-translations               [######################] 100%
(203/929) upgrading qt5-base                       [######################] 100%
(204/929) upgrading qt5-svg                        [######################] 100%
(205/929) upgrading freeglut                       [######################] 100%
(206/929) upgrading jasper                         [######################] 100%
(207/929) upgrading libwebp                        [######################] 100%
(208/929) upgrading qt5-imageformats               [######################] 100%
(209/929) upgrading faad2                          [######################] 100%
(210/929) upgrading gsm                            [######################] 100%
(211/929) upgrading jack2                          [######################] 100%
(212/929) upgrading lame                           [######################] 100%
(213/929) upgrading libass                         [######################] 100%
(214/929) upgrading libbluray                      [######################] 100%
(215/929) upgrading flac                           [######################] 100%
(216/929) upgrading mpg123                         [######################] 100%
(217/929) upgrading libsndfile                     [######################] 100%
(218/929) upgrading libbs2b                        [######################] 100%
(219/929) upgrading libiec61883                    [######################] 100%
(220/929) upgrading libmfx                         [######################] 100%
(221/929) upgrading libmodplug                     [######################] 100%
(222/929) upgrading libasyncns                     [######################] 100%
(223/929) upgrading libpulse                       [######################] 100%
(224/929) upgrading libgit2                        [######################] 100%
(225/929) upgrading rav1e                          [######################] 100%
(226/929) upgrading libsoxr                        [######################] 100%
(227/929) upgrading libssh                         [######################] 100%
(228/929) upgrading libva                          [######################] 100%
New optional dependencies for libva
    libva-mesa-driver: backend for AMD and Nvidia GPUs [installed]
(229/929) upgrading libvpx                         [######################] 100%
(230/929) upgrading x264                           [######################] 100%
(231/929) upgrading libxv                          [######################] 100%
(232/929) upgrading opencore-amr                   [######################] 100%
(233/929) upgrading openjpeg2                      [######################] 100%
(234/929) upgrading hidapi                         [######################] 100%
(235/929) upgrading sdl2                           [######################] 100%
(236/929) upgrading srt                            [######################] 100%
(237/929) upgrading svt-av1                        [######################] 100%
(238/929) upgrading ffmpeg                         [######################] 100%
(239/929) installing libcamera                     [######################] 100%
Optional dependencies for libcamera
    gst-plugin-libcamera: GStreamer plugin
    libcamera-docs: for documentation
    libcamera-tools: for applications
(240/929) upgrading pipewire                       [######################] 100%
New optional dependencies for pipewire
    pipewire-audio: Audio support
    pipewire-roc: ROC streaming
(241/929) upgrading fluidsynth                     [######################] 100%
(242/929) upgrading libnotify                      [######################] 100%
(243/929) upgrading libsidplayfp                   [######################] 100%
(244/929) upgrading libusb-compat                  [######################] 100%
(245/929) upgrading lirc                           [######################] 100%
(246/929) upgrading neon                           [######################] 100%
(247/929) upgrading wavpack                        [######################] 100%
(248/929) upgrading libopenmpt                     [######################] 100%
(249/929) upgrading libcddb                        [######################] 100%
(250/929) upgrading qt5-x11extras                  [######################] 100%
(251/929) upgrading libcdio                        [######################] 100%
(252/929) upgrading audacious-plugins              [######################] 100%
(253/929) upgrading audacious                      [######################] 100%
(254/929) upgrading avr-binutils                   [######################] 100%
(255/929) upgrading avr-gcc                        [######################] 100%
(256/929) upgrading elfutils                       [######################] 100%
(257/929) upgrading avrdude                        [######################] 100%
(258/929) upgrading b43-fwcutter                   [######################] 100%
(259/929) upgrading babl                           [######################] 100%
(260/929) upgrading libxres                        [######################] 100%
(261/929) upgrading libwnck3                       [######################] 100%
(262/929) upgrading bamf                           [######################] 100%
(263/929) upgrading bash-completion                [######################] 100%
(264/929) upgrading binutils                       [######################] 100%
(265/929) upgrading libical                        [######################] 100%
(266/929) upgrading bluez                          [######################] 100%
warning: directory permissions differ on /etc/bluetooth/
filesystem: 755  package: 555
(267/929) upgrading bluez-libs                     [######################] 100%
(268/929) upgrading nspr                           [######################] 100%
(269/929) upgrading nss                            [######################] 100%
(270/929) upgrading libnm                          [######################] 100%
(271/929) upgrading python-cairo                   [######################] 100%
(272/929) upgrading gobject-introspection-runtime  [######################] 100%
(273/929) upgrading python-gobject                 [######################] 100%
(274/929) upgrading blueman                        [######################] 100%
(275/929) upgrading boost-libs                     [######################] 100%
(276/929) upgrading botan                          [######################] 100%
(277/929) upgrading btrfs-progs                    [######################] 100%
(278/929) upgrading bubblewrap                     [######################] 100%
(279/929) upgrading cairomm                        [######################] 100%
(280/929) upgrading libxfce4util                   [######################] 100%
(281/929) upgrading xfconf                         [######################] 100%
(282/929) upgrading catfish                        [######################] 100%
(283/929) upgrading chromaprint                    [######################] 100%
(284/929) upgrading talloc                         [######################] 100%
(285/929) upgrading libbsd                         [######################] 100%
(286/929) installing libwbclient                   [######################] 100%
Optional dependencies for libwbclient
    python-dnspython: samba_dnsupdate and samba_upgradedns in AD setup
    [installed]
    python-markdown: for samba-tool domain schemeupgrade [installed]
    glusterfs: for vfs_glusterfs support
(287/929) upgrading cifs-utils                     [######################] 100%
New optional dependencies for cifs-utils
    python: for smb2-quota and smbinfo script [installed]
(288/929) upgrading ckbcomp                        [######################] 100%
(289/929) upgrading gcc                            [######################] 100%
(290/929) upgrading compiler-rt                    [######################] 100%
(291/929) upgrading clang                          [######################] 100%
(292/929) upgrading clucene                        [######################] 100%
(293/929) upgrading libuv                          [######################] 100%
(294/929) upgrading rhash                          [######################] 100%
(295/929) upgrading cmake                          [######################] 100%
(296/929) upgrading cpupower                       [######################] 100%
(297/929) upgrading poppler                        [######################] 100%
(298/929) upgrading qpdf                           [######################] 100%
(299/929) upgrading ijs                            [######################] 100%
(300/929) upgrading cups-filters                   [######################] 100%
New optional dependencies for cups-filters
    antiword: to convert MS Word documents for Braille embosser support
    docx2txt: to convert Microsoft OOXML text from DOCX files for Braille
    embosser support
    imagemagick: for Braille embosser support [installed]
    liblouis: for Braille embosser support [installed]
(301/929) upgrading cups                           [######################] 100%
New optional dependencies for cups
    libusb: for usb printer backend [installed]
(302/929) upgrading poppler-data                   [######################] 100%
(303/929) upgrading ghostscript                    [######################] 100%
(304/929) upgrading cups-pdf                       [######################] 100%
(305/929) upgrading polkit                         [######################] 100%
(306/929) upgrading cups-pk-helper                 [######################] 100%
(307/929) upgrading db                             [######################] 100%
(308/929) upgrading libbpf                         [######################] 100%
(309/929) upgrading iproute2                       [######################] 100%
New optional dependencies for iproute2
    db5.3: userspace arp daemon [installed]
    python: for routel [installed]
(310/929) upgrading dhclient                       [######################] 100%
(311/929) upgrading discord                        [######################] 100%
New optional dependencies for discord
    libappindicator-gtk3: Systray indicator support [installed]
(312/929) upgrading djvulibre                      [######################] 100%
(313/929) upgrading dmraid                         [######################] 100%
(314/929) installing nftables                      [######################] 100%
Optional dependencies for nftables
    python: Python bindings [installed]
(315/929) upgrading dnsmasq                        [######################] 100%
(316/929) upgrading dosfstools                     [######################] 100%
(317/929) upgrading ecryptfs-utils                 [######################] 100%
(318/929) upgrading efibootmgr                     [######################] 100%
(319/929) upgrading enchant                        [######################] 100%
(320/929) upgrading libgxps                        [######################] 100%
(321/929) upgrading libspectre                     [######################] 100%
(322/929) upgrading poppler-glib                   [######################] 100%
(323/929) upgrading libsynctex                     [######################] 100%
(324/929) upgrading gnome-desktop-common           [######################] 100%
(325/929) upgrading gnome-desktop                  [######################] 100%
(326/929) upgrading gstreamer                      [######################] 100%
(327/929) upgrading orc                            [######################] 100%
(328/929) upgrading gst-plugins-base-libs          [######################] 100%
(329/929) upgrading gspell                         [######################] 100%
(330/929) upgrading libhandy                       [######################] 100%
(331/929) upgrading fuse-common                    [######################] 100%
(332/929) upgrading fuse3                          [######################] 100%
(333/929) upgrading ldns                           [######################] 100%
(334/929) upgrading openssh                        [######################] 100%
Removed "/etc/systemd/user/sockets.target.wants/gcr-ssh-agent.socket".
(335/929) upgrading gcr                            [######################] 100%
(336/929) upgrading gptfdisk                       [######################] 100%
(337/929) upgrading thin-provisioning-tools        [######################] 100%
(338/929) upgrading lvm2                           [######################] 100%
(339/929) upgrading ndctl                          [######################] 100%
(340/929) upgrading libinih                        [######################] 100%
(341/929) upgrading liburcu                        [######################] 100%
(342/929) upgrading xfsprogs                       [######################] 100%
New optional dependencies for xfsprogs
    icu: for xfs_scrub [installed]
(343/929) upgrading libblockdev                    [######################] 100%
(344/929) upgrading gvfs                           [######################] 100%
(345/929) upgrading evince                         [######################] 100%
(346/929) upgrading exiv2                          [######################] 100%
(347/929) upgrading libxfce4ui                     [######################] 100%
(348/929) upgrading exo                            [######################] 100%
(349/929) upgrading f2fs-tools                     [######################] 100%
(350/929) upgrading noto-fonts                     [######################] 100%
(351/929) upgrading firefox                        [######################] 100%
(352/929) installing libxmlb                       [######################] 100%
(353/929) installing appstream                     [######################] 100%
(354/929) installing libmalcontent                 [######################] 100%
(355/929) upgrading libsoup                        [######################] 100%
(356/929) upgrading ostree                         [######################] 100%
(357/929) upgrading libmm-glib                     [######################] 100%
(358/929) upgrading geoclue                        [######################] 100%
(359/929) upgrading rtkit                          [######################] 100%
(360/929) upgrading xdg-desktop-portal-gtk         [######################] 100%
(361/929) upgrading gssdp                          [######################] 100%
(362/929) upgrading gupnp                          [######################] 100%
(363/929) upgrading gupnp-igd                      [######################] 100%
(364/929) upgrading libnice                        [######################] 100%
(365/929) upgrading gst-plugins-bad-libs           [######################] 100%
(366/929) upgrading gtk4                           [######################] 100%
(367/929) upgrading libadwaita                     [######################] 100%
(368/929) installing gcr-4                         [######################] 100%
Created symlink /etc/systemd/user/sockets.target.wants/gcr-ssh-agent.socket → /usr/lib/systemd/user/gcr-ssh-agent.socket.
Optional dependencies for gcr-4
    gtk4: gcr-viewer-gtk4 [installed]
(369/929) upgrading gnome-keyring                  [######################] 100%
(370/929) upgrading gnome-desktop-4                [######################] 100%
(371/929) upgrading xdg-desktop-portal-gnome       [######################] 100%
(372/929) upgrading xdg-desktop-portal             [######################] 100%
(373/929) upgrading flatpak                        [######################] 100%
(374/929) upgrading m4                             [######################] 100%
(375/929) upgrading flex                           [######################] 100%
(376/929) upgrading fmt                            [######################] 100%
(377/929) upgrading foomatic-db                    [######################] 100%
(378/929) upgrading foomatic-db-gutenprint-ppds    [######################] 100%
(379/929) upgrading game-devices-udev              [######################] 100%
Running in chroot, ignoring request.
(380/929) upgrading garcon                         [######################] 100%
(381/929) upgrading gc                             [######################] 100%
(382/929) upgrading libxpm                         [######################] 100%
(383/929) upgrading libavif                        [######################] 100%
(384/929) upgrading libde265                       [######################] 100%
(385/929) upgrading libheif                        [######################] 100%
(386/929) upgrading gd                             [######################] 100%
(387/929) upgrading libraw                         [######################] 100%
(388/929) upgrading libspiro                       [######################] 100%
(389/929) upgrading luajit                         [######################] 100%
(390/929) upgrading suitesparse                    [######################] 100%
(391/929) upgrading imath                          [######################] 100%
(392/929) upgrading gegl                           [######################] 100%
(393/929) installing geocode-glib-common           [######################] 100%
(394/929) upgrading geocode-glib                   [######################] 100%
(395/929) upgrading libwmf                         [######################] 100%
(396/929) upgrading libtool                        [######################] 100%
(397/929) upgrading netpbm                         [######################] 100%
(398/929) upgrading graphviz                       [######################] 100%
(399/929) upgrading gimp                           [######################] 100%
(400/929) upgrading git                            [######################] 100%
(401/929) upgrading glew                           [######################] 100%
New optional dependencies for glew
    libx11: for glxewinfo and visualinfo [installed]
(402/929) upgrading glslang                        [######################] 100%
(403/929) upgrading gnome-menus                    [######################] 100%
(404/929) upgrading grub                           [######################] 100%
:: GRUB no longer supports side-loading modules when secure boot is
   enabled. Thus booting will fail unless you have a 'grubx64.efi'
   executable with bundled modules.
(405/929) upgrading grub-btrfs                     [######################] 100%
New optional dependencies for grub-btrfs
    inotify-tools: For grub-btrfsd daemon
    snapper: For snapper support
(406/929) upgrading grub-theme-manjaro             [######################] 100%
(407/929) upgrading gst-libav                      [######################] 100%
(408/929) upgrading serd                           [######################] 100%
New optional dependencies for serd
    serd-docs: for developer documentation
(409/929) upgrading pcre                           [######################] 100%
(410/929) upgrading sord                           [######################] 100%
New optional dependencies for sord
    sord-docs: for developer documentation
(411/929) upgrading lv2                            [######################] 100%
New optional dependencies for lv2
    lv2-docs: for developer documentation
    lv2-example-plugins: for example plugins
    python-lxml: for lv2specgen.py
    python-markdown: for lv2specgen.py [installed]
(412/929) upgrading sratom                         [######################] 100%
New optional dependencies for sratom
    sratom-docs: for developer documentation
(413/929) upgrading lilv                           [######################] 100%
New optional dependencies for lilv
    lilv-docs: for documentation
    python-numpy: for Python bindings
(414/929) upgrading openal                         [######################] 100%
(415/929) upgrading sbc                            [######################] 100%
(416/929) upgrading libltc                         [######################] 100%
(417/929) upgrading soundtouch                     [######################] 100%
(418/929) upgrading spandsp                        [######################] 100%
(419/929) upgrading libsrtp                        [######################] 100%
(420/929) upgrading zvbi                           [######################] 100%
(421/929) upgrading wildmidi                       [######################] 100%
(422/929) upgrading libraqm                        [######################] 100%
(423/929) upgrading imagemagick                    [######################] 100%
(424/929) upgrading zbar                           [######################] 100%
(425/929) upgrading qrencode                       [######################] 100%
(426/929) upgrading zxing-cpp                      [######################] 100%
(427/929) upgrading libxslt                        [######################] 100%
(428/929) upgrading raptor                         [######################] 100%
(429/929) upgrading gst-plugins-bad                [######################] 100%
(430/929) upgrading gst-plugins-base               [######################] 100%
(431/929) upgrading taglib                         [######################] 100%
(432/929) upgrading libshout                       [######################] 100%
(433/929) upgrading imlib2                         [######################] 100%
(434/929) upgrading gst-plugins-good               [######################] 100%
(435/929) upgrading gst-plugins-ugly               [######################] 100%
(436/929) upgrading mbedtls                        [######################] 100%
(437/929) upgrading gtkhash                        [######################] 100%
(438/929) upgrading thunar                         [######################] 100%
(439/929) installing thunarx-python                [######################] 100%
(440/929) upgrading gtkhash-thunar                 [######################] 100%
(441/929) upgrading pangomm                        [######################] 100%
(442/929) upgrading gtkmm3                         [######################] 100%
(443/929) upgrading gtksourceview3                 [######################] 100%
(444/929) upgrading gtksourceview4                 [######################] 100%
(445/929) upgrading guile                          [######################] 100%
(446/929) upgrading gutenprint                     [######################] 100%
>>please run /usr/bin/cups-genppdupdate
>>and restart cups daemon
(447/929) upgrading libplist                       [######################] 100%
New optional dependencies for libplist
    python: for the Python bindings [installed]
(448/929) upgrading libimobiledevice               [######################] 100%
(449/929) upgrading usbmuxd                        [######################] 100%
(450/929) upgrading gvfs-afc                       [######################] 100%
(451/929) upgrading libgphoto2                     [######################] 100%
(452/929) upgrading gvfs-gphoto2                   [######################] 100%
(453/929) upgrading gvfs-mtp                       [######################] 100%
(454/929) upgrading libnfs                         [######################] 100%
(455/929) upgrading gvfs-nfs                       [######################] 100%
(456/929) upgrading tdb                            [######################] 100%
(457/929) upgrading tevent                         [######################] 100%
(458/929) upgrading lmdb                           [######################] 100%
(459/929) upgrading ldb                            [######################] 100%
(460/929) upgrading smbclient                      [######################] 100%
(461/929) upgrading gvfs-smb                       [######################] 100%
(462/929) upgrading harfbuzz-icu                   [######################] 100%
(463/929) upgrading hdparm                         [######################] 100%
(464/929) upgrading libcanberra                    [######################] 100%
New optional dependencies for libcanberra
    gtk3: canberra-gtk-play [installed]
(465/929) upgrading hexchat                        [######################] 100%
(466/929) upgrading python-distro                  [######################] 100%
(467/929) upgrading net-snmp                       [######################] 100%
(468/929) upgrading perl-clone                     [######################] 100%
(469/929) upgrading perl-ffi-checklib              [######################] 100%
(470/929) upgrading perl-path-tiny                 [######################] 100%
(471/929) upgrading perl-alien-build               [######################] 100%
(472/929) upgrading perl-alien-libxml2             [######################] 100%
(473/929) upgrading perl-xml-namespacesupport      [######################] 100%
(474/929) upgrading perl-xml-sax-base              [######################] 100%
(475/929) upgrading perl-xml-libxml                [######################] 100%
(476/929) upgrading hplip                          [######################] 100%
(477/929) upgrading htop                           [######################] 100%
(478/929) upgrading hunspell                       [######################] 100%
(479/929) upgrading perl-encode-locale             [######################] 100%
(480/929) upgrading perl-uri                       [######################] 100%
(481/929) upgrading perl-html-tagset               [######################] 100%
(482/929) upgrading perl-http-date                 [######################] 100%
(483/929) upgrading perl-lwp-mediatypes            [######################] 100%
(484/929) upgrading perl-http-message              [######################] 100%
(485/929) upgrading perl-html-parser               [######################] 100%
(486/929) upgrading perl-http-negotiate            [######################] 100%
(487/929) upgrading perl-www-robotrules            [######################] 100%
(488/929) upgrading perl-libwww                    [######################] 100%
(489/929) upgrading hwinfo                         [######################] 100%
(490/929) upgrading hwloc                          [######################] 100%
(491/929) upgrading hyphen                         [######################] 100%
(492/929) upgrading libibus                        [######################] 100%
(493/929) upgrading ibus                           [######################] 100%
(494/929) upgrading inetutils                      [######################] 100%
(495/929) upgrading inxi                           [######################] 100%
New optional dependencies for inxi
    systemd-sysvcompat: -I runlevel [installed]
    xorg-xdriinfo: xdriinfo: -G (X) DRI driver (if missing, fallback to Xorg
    log)
(496/929) upgrading iputils                        [######################] 100%
(497/929) upgrading java-environment-common        [######################] 100%
(498/929) upgrading java-runtime-common            [######################] 100%
(499/929) upgrading jre8-openjdk-headless          [######################] 100%
(500/929) upgrading jre8-openjdk                   [######################] 100%
(501/929) upgrading jdk8-openjdk                   [######################] 100%
(502/929) upgrading kcoreaddons                    [######################] 100%
(503/929) upgrading kauth                          [######################] 100%
(504/929) upgrading qt5-declarative                [######################] 100%
(505/929) upgrading qt5-wayland                    [######################] 100%
(506/929) upgrading kguiaddons                     [######################] 100%
(507/929) upgrading kitemmodels                    [######################] 100%
(508/929) upgrading kwindowsystem                  [######################] 100%
(509/929) upgrading kvantum                        [######################] 100%
(510/929) upgrading kwayland                       [######################] 100%
(511/929) upgrading languagetool                   [######################] 100%
warning: directory permissions differ on /usr/share/languagetool/third-party-licenses/
filesystem: 755  package: 775
(512/929) upgrading less                           [######################] 100%
(513/929) upgrading lib32-alsa-lib                 [######################] 100%
(514/929) upgrading lib32-brotli                   [######################] 100%
(515/929) upgrading lib32-bzip2                    [######################] 100%
(516/929) upgrading lib32-libunistring             [######################] 100%
(517/929) upgrading lib32-libidn2                  [######################] 100%
(518/929) upgrading lib32-zlib                     [######################] 100%
(519/929) upgrading lib32-libssh2                  [######################] 100%
(520/929) upgrading lib32-libpsl                   [######################] 100%
(521/929) upgrading lib32-curl                     [######################] 100%
(522/929) upgrading lib32-expat                    [######################] 100%
(523/929) upgrading lib32-libxdmcp                 [######################] 100%
(524/929) upgrading lib32-libxau                   [######################] 100%
(525/929) upgrading lib32-libxcb                   [######################] 100%
(526/929) upgrading lib32-libx11                   [######################] 100%
(527/929) upgrading lib32-libxext                  [######################] 100%
(528/929) upgrading lib32-libxfixes                [######################] 100%
(529/929) upgrading lib32-libxi                    [######################] 100%
(530/929) upgrading lib32-libxrender               [######################] 100%
(531/929) upgrading lib32-libxrandr                [######################] 100%
(532/929) upgrading lib32-libpciaccess             [######################] 100%
(533/929) upgrading lib32-libdrm                   [######################] 100%
(534/929) upgrading lib32-libffi                   [######################] 100%
(535/929) upgrading lib32-icu                      [######################] 100%
(536/929) upgrading lib32-xz                       [######################] 100%
(537/929) upgrading lib32-libxml2                  [######################] 100%
(538/929) upgrading lib32-wayland                  [######################] 100%
(539/929) upgrading lib32-libxxf86vm               [######################] 100%
(540/929) upgrading lib32-libxdamage               [######################] 100%
(541/929) upgrading lib32-libxshmfence             [######################] 100%
(542/929) upgrading lib32-libelf                   [######################] 100%
(543/929) upgrading lib32-libunwind                [######################] 100%
(544/929) upgrading lib32-ncurses                  [######################] 100%
(545/929) upgrading lib32-llvm-libs                [######################] 100%
(546/929) upgrading lib32-lm_sensors               [######################] 100%
(547/929) upgrading lib32-mesa                     [######################] 100%
(548/929) upgrading lib32-libglvnd                 [######################] 100%
(549/929) upgrading lib32-freeglut                 [######################] 100%
(550/929) upgrading lib32-libice                   [######################] 100%
(551/929) upgrading lib32-util-linux               [######################] 100%
(552/929) upgrading lib32-libsm                    [######################] 100%
(553/929) upgrading lib32-libxmu                   [######################] 100%
(554/929) upgrading lib32-glew                     [######################] 100%
(555/929) upgrading lib32-libgpg-error             [######################] 100%
(556/929) upgrading lib32-libgcrypt                [######################] 100%
(557/929) upgrading lib32-libtasn1                 [######################] 100%
(558/929) upgrading lib32-libva                    [######################] 100%
New optional dependencies for lib32-libva
    lib32-libva-intel-driver: backend for Intel GPUs (<= Haswell) [installed]
    lib32-libva-mesa-driver: backend for AMD and Nvidia GPUs [installed]
(559/929) upgrading lib32-libva-mesa-driver        [######################] 100%
(560/929) upgrading lib32-libva-vdpau-driver       [######################] 100%
(561/929) upgrading lib32-mesa-vdpau               [######################] 100%
(562/929) upgrading lib32-nspr                     [######################] 100%
(563/929) upgrading lib32-sqlite                   [######################] 100%
(564/929) upgrading lib32-nss                      [######################] 100%
(565/929) upgrading lib32-readline                 [######################] 100%
(566/929) upgrading lib32-systemd                  [######################] 100%
(567/929) upgrading lib32-vulkan-intel             [######################] 100%
(568/929) upgrading vulkan-radeon                  [######################] 100%
(569/929) upgrading lib32-vulkan-radeon            [######################] 100%
(570/929) upgrading libappindicator-gtk3           [######################] 100%
(571/929) upgrading libatomic_ops                  [######################] 100%
(572/929) upgrading libayatana-indicator           [######################] 100%
(573/929) upgrading libayatana-appindicator        [######################] 100%
(574/929) upgrading librevenge                     [######################] 100%
(575/929) upgrading libwpd                         [######################] 100%
(576/929) upgrading libcdr                         [######################] 100%
(577/929) upgrading libdiscid                      [######################] 100%
(578/929) upgrading libe-book                      [######################] 100%
(579/929) upgrading libebml                        [######################] 100%
(580/929) upgrading libepubgen                     [######################] 100%
(581/929) upgrading libetonyek                     [######################] 100%
(582/929) upgrading xorg-fonts-encodings           [######################] 100%
(583/929) upgrading libfontenc                     [######################] 100%
(584/929) upgrading libgee                         [######################] 100%
(585/929) upgrading libxkbfile                     [######################] 100%
(586/929) upgrading libgnomekbd                    [######################] 100%
(587/929) upgrading libgpod                        [######################] 100%
(588/929) upgrading libgsf                         [######################] 100%
(589/929) upgrading libgusb                        [######################] 100%
(590/929) upgrading libieee1284                    [######################] 100%
(591/929) upgrading libimagequant                  [######################] 100%
(592/929) upgrading libixion                       [######################] 100%
(593/929) upgrading libkeybinder3                  [######################] 100%
(594/929) upgrading liblouis                       [######################] 100%
(595/929) upgrading libmatroska                    [######################] 100%
(596/929) upgrading libmbim                        [######################] 100%
(597/929) upgrading libmspub                       [######################] 100%
(598/929) upgrading libmusicbrainz5                [######################] 100%
(599/929) upgrading libmwaw                        [######################] 100%
(600/929) upgrading libmythes                      [######################] 100%
(601/929) upgrading slang                          [######################] 100%
(602/929) upgrading libnewt                        [######################] 100%
(603/929) upgrading mobile-broadband-provider-info [######################] 100%
(604/929) upgrading libnma-common                  [######################] 100%
(605/929) upgrading libnma                         [######################] 100%
(606/929) upgrading libnumbertext                  [######################] 100%
(607/929) upgrading libodfgen                      [######################] 100%
(608/929) upgrading libopenraw                     [######################] 100%
(609/929) upgrading liborcus                       [######################] 100%
(610/929) upgrading libpamac                       [######################] 100%
(611/929) upgrading libpamac-flatpak-plugin        [######################] 100%
(612/929) upgrading squashfs-tools                 [######################] 100%
(613/929) upgrading snapd                          [######################] 100%
(614/929) upgrading snapd-glib                     [######################] 100%
(615/929) upgrading libpamac-snap-plugin           [######################] 100%
(616/929) upgrading libpipeline                    [######################] 100%
(617/929) upgrading spirv-tools                    [######################] 100%
(618/929) upgrading shaderc                        [######################] 100%
(619/929) upgrading libplacebo                     [######################] 100%
(620/929) upgrading protobuf-c                     [######################] 100%
(621/929) upgrading libpurple                      [######################] 100%
(622/929) upgrading libqmi                         [######################] 100%
(623/929) upgrading libqxp                         [######################] 100%
(624/929) upgrading libwps                         [######################] 100%
(625/929) upgrading lpsolve                        [######################] 100%
(626/929) upgrading libwpg                         [######################] 100%
(627/929) upgrading libvisio                       [######################] 100%
(628/929) upgrading libzmf                         [######################] 100%
(629/929) upgrading xmlsec                         [######################] 100%
(630/929) upgrading libreoffice-fresh              [######################] 100%
New optional dependencies for libreoffice-fresh
    gtk4: for GTK4 integration (experimental) [installed]
    qt6-base: for QT6 desktop integration [installed]
(631/929) upgrading libteam                        [######################] 100%
(632/929) upgrading libtg_owt                      [######################] 100%
(633/929) upgrading libupnp                        [######################] 100%
(634/929) upgrading liburing                       [######################] 100%
(635/929) upgrading libva-mesa-driver              [######################] 100%
(636/929) upgrading libwpe                         [######################] 100%
(637/929) upgrading libxcvt                        [######################] 100%
(638/929) upgrading libxfont2                      [######################] 100%
(639/929) upgrading libxpresent                    [######################] 100%
(640/929) upgrading xorg-xkbcomp                   [######################] 100%
(641/929) upgrading xorg-xrandr                    [######################] 100%
(642/929) upgrading xorg-server-common             [######################] 100%
(643/929) upgrading xorg-server                    [######################] 100%
(644/929) upgrading xorg-xmodmap                   [######################] 100%
(645/929) upgrading lightdm                        [######################] 100%
warning: /etc/lightdm/lightdm.conf installed as /etc/lightdm/lightdm.conf.pacnew
(646/929) upgrading lightdm-gtk-greeter            [######################] 100%
(647/929) upgrading linux-firmware-whence          [######################] 100%
(648/929) upgrading linux-firmware                 [######################] 100%
(649/929) upgrading mkinitcpio                     [######################] 100%
warning: /etc/mkinitcpio.conf installed as /etc/mkinitcpio.conf.pacnew
(650/929) upgrading linux510                       [######################] 100%
(651/929) upgrading llvm                           [######################] 100%
(652/929) upgrading logrotate                      [######################] 100%
(653/929) upgrading lsof                           [######################] 100%
(654/929) upgrading make                           [######################] 100%
(655/929) upgrading man-db                         [######################] 100%
(656/929) upgrading man-pages                      [######################] 100%
(657/929) upgrading manjaro-alsa                   [######################] 100%
New optional dependencies for manjaro-alsa
    alsa-tools: Advanced tools for certain sound cards
    pipewire-alsa: PipeWire support
    pulseaudio-alsa: PulseAudio support [installed]
(658/929) upgrading pamac-cli                      [######################] 100%
(659/929) upgrading pamac-gtk                      [######################] 100%
(660/929) upgrading xcb-util-cursor                [######################] 100%
(661/929) upgrading vulkan-headers                 [######################] 100%
(662/929) upgrading qt6-translations               [######################] 100%
(663/929) upgrading qt6-base                       [######################] 100%
(664/929) upgrading qt6-declarative                [######################] 100%
(665/929) upgrading shiboken6                      [######################] 100%
(666/929) upgrading pyside6                        [######################] 100%
New optional dependencies for pyside6
    qt6-httpserver: QtHttpServer bindings
    qt6-speech: QtTextToSpeech bindings
(667/929) upgrading mhwd-nvidia                    [######################] 100%
(668/929) upgrading mhwd-nvidia-390xx              [######################] 100%
(669/929) upgrading mhwd-nvidia-470xx              [######################] 100%
(670/929) upgrading mhwd-db                        [######################] 100%
(671/929) upgrading mhwd                           [######################] 100%
(672/929) upgrading python-systemd                 [######################] 100%
(673/929) upgrading python-manjaro-sdk             [######################] 100%
(674/929) upgrading manjaro-hello                  [######################] 100%
(675/929) installing foomatic-db-ppds              [######################] 100%
(676/929) installing foomatic-db-nonfree           [######################] 100%
Optional dependencies for foomatic-db-nonfree
    foomatic-db-nonfree-ppds: nonfree PPD files [pending]
(677/929) installing foomatic-db-nonfree-ppds      [######################] 100%
(678/929) upgrading manjaro-printer                [######################] 100%
New optional dependencies for manjaro-printer
    hplip: HP printer and scaner support and tools [installed]
    print-manager: A KDE tool for managing print jobs and printers
    simple-scan: Gtk3 scanning utility
    splix: CUPS drivers for SPL (Samsung Printer Language) printers [installed]
    system-config-printer: A Gtk cups printer configuration tool and status
    applet
    xsane: Gtk2 sane scanner frontend
(679/929) upgrading openpmix                       [######################] 100%
New optional dependencies for openpmix
    openpmix-docs: for documentation
(680/929) upgrading openmpi                        [######################] 100%
(681/929) upgrading pulseaudio                     [######################] 100%
(682/929) upgrading pulseaudio-bluetooth           [######################] 100%
(683/929) upgrading manjaro-pulse                  [######################] 100%
New optional dependencies for manjaro-pulse
    pulseaudio-zeroconf: Zeroconf support [installed]
(684/929) upgrading manjaro-release                [######################] 100%
(685/929) upgrading manjaro-settings-manager       [######################] 100%
(686/929) upgrading manjaro-settings-manager-n...  [######################] 100%
(687/929) upgrading matcha-gtk-theme               [######################] 100%

Firefox theme
See /usr/share/doc/matcha-gtk-theme/firefox/README.md

Gedit theme
See /usr/share/doc/matcha-gtk-theme/gedit/README.md

(688/929) upgrading memtest86+                     [######################] 100%
(689/929) upgrading mesa-vdpau                     [######################] 100%
(690/929) upgrading miniupnpc                      [######################] 100%
(691/929) upgrading minizip                        [######################] 100%
(692/929) upgrading mktorrent                      [######################] 100%
(693/929) upgrading ppp                            [######################] 100%
(694/929) upgrading modemmanager                   [######################] 100%
(695/929) upgrading mousepad                       [######################] 100%
(696/929) upgrading mythes-en                      [######################] 100%
(697/929) upgrading nano                           [######################] 100%
(698/929) upgrading pcsclite                       [######################] 100%
New optional dependencies for pcsclite
    ccid: USB Chip/Smart Card Interface Devices driver
    python: API call trace logging with the pcsc-spy [installed]
(699/929) upgrading wpa_supplicant                 [######################] 100%
(700/929) upgrading networkmanager                 [######################] 100%
New optional dependencies for networkmanager
    pacrunner: PAC proxy support
(701/929) upgrading nm-connection-editor           [######################] 100%
(702/929) upgrading network-manager-applet         [######################] 100%
(703/929) upgrading pkcs11-helper                  [######################] 100%
(704/929) upgrading openvpn                        [######################] 100%
(705/929) upgrading networkmanager-openvpn         [######################] 100%
(706/929) upgrading rpcbind                        [######################] 100%
(707/929) upgrading nfsidmap                       [######################] 100%
(708/929) upgrading nfs-utils                      [######################] 100%
New optional dependencies for nfs-utils
    python: for rpcctl, nfsiostat, nfsdclnts and mountstats usage [installed]
(709/929) upgrading ntfs-3g                        [######################] 100%
(710/929) upgrading ntp                            [######################] 100%
(711/929) upgrading nuspell                        [######################] 100%
(712/929) upgrading qt6-svg                        [######################] 100%
(713/929) upgrading obs-studio                     [######################] 100%
(714/929) upgrading onlyoffice-desktopeditors      [######################] 100%
warning: directory permissions differ on /opt/onlyoffice/
filesystem: 755  package: 775
(715/929) upgrading os-prober                      [######################] 100%
(716/929) upgrading p7zip                          [######################] 100%
(717/929) upgrading papirus-icon-theme             [######################] 100%
(718/929) upgrading pavucontrol                    [######################] 100%
(719/929) upgrading perl-file-desktopentry         [######################] 100%
(720/929) upgrading perl-file-mimeinfo             [######################] 100%
(721/929) upgrading pidgin                         [######################] 100%
(722/929) upgrading poppler-qt5                    [######################] 100%
(723/929) upgrading postgresql-libs                [######################] 100%
(724/929) upgrading powertop                       [######################] 100%
(725/929) upgrading pptpclient                     [######################] 100%
(726/929) upgrading python-pyqt5-sip               [######################] 100%
(727/929) upgrading python-pyqt5                   [######################] 100%
New optional dependencies for python-pyqt5
    qt5-location: QtLocation, QtPositioning
    qt5-sensors: QtSensors
    qt5-webchannel: QtWebChannel
(728/929) upgrading pulseaudio-equalizer           [######################] 100%
(729/929) upgrading pulseaudio-jack                [######################] 100%
(730/929) upgrading pulseaudio-lirc                [######################] 100%
(731/929) upgrading pulseaudio-rtp                 [######################] 100%
(732/929) upgrading pulseaudio-zeroconf            [######################] 100%
(733/929) upgrading python-appdirs                 [######################] 100%
(734/929) upgrading python-attrs                   [######################] 100%
(735/929) upgrading python-msgpack                 [######################] 100%
(736/929) upgrading python-cachecontrol            [######################] 100%
New optional dependencies for python-cachecontrol
    python-lockfile: for filecache
    python-redis: for redis cache
(737/929) upgrading python-colorama                [######################] 100%
(738/929) upgrading python-docutils                [######################] 100%
(739/929) upgrading python-commonmark              [######################] 100%
(740/929) upgrading python-cryptography            [######################] 100%
(741/929) upgrading python-distlib                 [######################] 100%
(742/929) upgrading python-dnspython               [######################] 100%
(743/929) upgrading python-dotty-dict              [######################] 100%
(744/929) upgrading python-zipp                    [######################] 100%
(745/929) upgrading python-importlib-metadata      [######################] 100%
(746/929) upgrading python-jaraco.context          [######################] 100%
(747/929) upgrading python-more-itertools          [######################] 100%
(748/929) upgrading python-jaraco.functools        [######################] 100%
(749/929) installing python-autocommand            [######################] 100%
(750/929) installing cython                        [######################] 100%
(751/929) upgrading python-typing_extensions       [######################] 100%
(752/929) installing python-pydantic               [######################] 100%
Optional dependencies for python-pydantic
    python-dotenv: for .env file support
    python-email-validator: for email validation
(753/929) installing python-inflect                [######################] 100%
(754/929) upgrading python-jaraco.text             [######################] 100%
(755/929) upgrading python-pyrsistent              [######################] 100%
(756/929) upgrading python-jsonschema              [######################] 100%
New optional dependencies for python-jsonschema
    python-fqdn: for hostname format
    python-idna: for idn-hostname format [installed]
    python-isoduration: for duration format
    python-jsonpointer: for json-pointer & relative-json-pointer format
    python-rfc3339-validator: for date-time format
    python-rfc3987: for iri, iri-reference, uri & uri-reference format
    python-uri-template: for uri-template format
    python-webcolors: for color format
(757/929) upgrading python-markdown                [######################] 100%
(758/929) upgrading python-packaging               [######################] 100%
(759/929) upgrading python-nspektr                 [######################] 100%
(760/929) upgrading python-ordered-set             [######################] 100%
(761/929) upgrading python-pillow                  [######################] 100%
(762/929) installing python-wheel                  [######################] 100%
Optional dependencies for python-wheel
    python-keyring: for wheel.signatures
    python-xdg: for wheel.signatures [installed]
(763/929) upgrading python-pip                     [######################] 100%
(764/929) upgrading python-platformdirs            [######################] 100%
(765/929) upgrading python-psutil                  [######################] 100%
(766/929) upgrading python-pygments                [######################] 100%
(767/929) upgrading python-pyopenssl               [######################] 100%
(768/929) upgrading python-reportlab               [######################] 100%
(769/929) upgrading python-resolvelib              [######################] 100%
(770/929) upgrading python-six                     [######################] 100%
(771/929) upgrading python-retrying                [######################] 100%
(772/929) installing python-uc-micro-py            [######################] 100%
(773/929) installing python-mdurl                  [######################] 100%
(774/929) installing python-markdown-it-py         [######################] 100%
Optional dependencies for python-markdown-it-py
    python-mdit_py_plugins: core plugins
(775/929) upgrading python-rich                    [######################] 100%
(776/929) installing python-fastjsonschema         [######################] 100%
(777/929) upgrading python-trove-classifiers       [######################] 100%
(778/929) upgrading python-validate-pyproject      [######################] 100%
(779/929) upgrading python-setuptools              [######################] 100%
(780/929) upgrading python-tenacity                [######################] 100%
(781/929) upgrading python-termcolor               [######################] 100%
(782/929) upgrading python-toml                    [######################] 100%
(783/929) upgrading qmk                            [######################] 100%
(784/929) upgrading qt6-5compat                    [######################] 100%
New optional dependencies for qt6-5compat
    qt6-shadertools: for QtGraphicalEffects
(785/929) upgrading qt6-imageformats               [######################] 100%
(786/929) upgrading qt6-wayland                    [######################] 100%
(787/929) upgrading unzip                          [######################] 100%
(788/929) upgrading r                              [######################] 100%
(789/929) upgrading redshift                       [######################] 100%
(790/929) upgrading reiserfsprogs                  [######################] 100%
(791/929) upgrading xxhash                         [######################] 100%
(792/929) upgrading rsync                          [######################] 100%
New optional dependencies for rsync
    python: for rrsync [installed]
(793/929) upgrading rubygems                       [######################] 100%
(794/929) installing ruby-abbrev                   [######################] 100%
(795/929) installing ruby-base64                   [######################] 100%
(796/929) installing ruby-benchmark                [######################] 100%
(797/929) installing ruby-bigdecimal               [######################] 100%
(798/929) installing ruby-cgi                      [######################] 100%
(799/929) installing ruby-csv                      [######################] 100%
(800/929) installing ruby-date                     [######################] 100%
(801/929) installing ruby-delegate                 [######################] 100%
(802/929) installing ruby-did_you_mean             [######################] 100%
(803/929) installing ruby-digest                   [######################] 100%
(804/929) installing ruby-drb                      [######################] 100%
(805/929) installing ruby-english                  [######################] 100%
(806/929) installing ruby-erb                      [######################] 100%
(807/929) installing ruby-etc                      [######################] 100%
(808/929) installing ruby-fcntl                    [######################] 100%
(809/929) installing ruby-fiddle                   [######################] 100%
(810/929) installing ruby-fileutils                [######################] 100%
(811/929) installing ruby-find                     [######################] 100%
(812/929) installing ruby-forwardable              [######################] 100%
(813/929) installing ruby-getoptlong               [######################] 100%
(814/929) installing ruby-io-console               [######################] 100%
(815/929) installing ruby-io-nonblock              [######################] 100%
(816/929) installing ruby-io-wait                  [######################] 100%
(817/929) installing ruby-ipaddr                   [######################] 100%
(818/929) upgrading ruby-reline                    [######################] 100%
(819/929) upgrading ruby-irb                       [######################] 100%
(820/929) upgrading ruby-json                      [######################] 100%
(821/929) installing ruby-logger                   [######################] 100%
(822/929) installing ruby-mutex_m                  [######################] 100%
(823/929) installing ruby-uri                      [######################] 100%
(824/929) installing ruby-net-http                 [######################] 100%
(825/929) upgrading ruby-stringio                  [######################] 100%
(826/929) installing ruby-time                     [######################] 100%
(827/929) installing ruby-open-uri                 [######################] 100%
(828/929) upgrading ruby-psych                     [######################] 100%
(829/929) upgrading ruby-rdoc                      [######################] 100%
(830/929) installing ruby-tmpdir                   [######################] 100%
(831/929) installing ruby-stdlib                   [######################] 100%
(832/929) upgrading ruby-minitest                  [######################] 100%
(833/929) installing ruby-power_assert             [######################] 100%
(834/929) installing ruby-rake                     [######################] 100%
(835/929) installing ruby-test-unit                [######################] 100%
(836/929) installing ruby-bundledgems              [######################] 100%
(837/929) upgrading ruby                           [######################] 100%
(838/929) upgrading ruby-public_suffix             [######################] 100%
(839/929) upgrading ruby-addressable               [######################] 100%
(840/929) upgrading ruby-eventmachine              [######################] 100%
(841/929) upgrading ruby-i18n                      [######################] 100%
(842/929) upgrading ruby-jekyll-sass-converter     [######################] 100%
(843/929) upgrading ruby-kramdown-parser-gfm       [######################] 100%
(844/929) upgrading ruby-rb-fsevent                [######################] 100%
(845/929) upgrading ruby-listen                    [######################] 100%
(846/929) upgrading ruby-mocha                     [######################] 100%
(847/929) upgrading ruby-tzinfo                    [######################] 100%
(848/929) upgrading ruby-unicode-display_width     [######################] 100%
(849/929) upgrading ruby-zeitwerk                  [######################] 100%
(850/929) upgrading s-nail                         [######################] 100%
(851/929) upgrading samba                          [######################] 100%
New optional dependencies for samba
    python-cryptography: lockout_tests.py gp_cert_auto_enroll_ext.py gpo.py and
    kcrypto.py [installed]
    python-dnspython: netads_dns.py, dnsresolver.py and traffic_packets.py
    [installed]
    python-markdown: ms_schema_markdown.py and ms_forest_updates_markdown.py
    [installed]
(852/929) upgrading sane                           [######################] 100%
(853/929) upgrading sof-firmware                   [######################] 100%
(854/929) upgrading spectre-meltdown-checker       [######################] 100%
(855/929) upgrading splix                          [######################] 100%
(856/929) upgrading woff2                          [######################] 100%
(857/929) upgrading wpebackend-fdo                 [######################] 100%
(858/929) upgrading webkit2gtk-4.1                 [######################] 100%
(859/929) upgrading zenity                         [######################] 100%
(860/929) upgrading usbutils                       [######################] 100%
(861/929) installing libxcrypt-compat              [######################] 100%
(862/929) installing lib32-libxcrypt-compat        [######################] 100%
(863/929) installing steam                         [######################] 100%
Optional dependencies for steam
    steam-native-runtime: steam native runtime support
    vulkan-driver: packaged vulkan driver [installed]
    lib32-vulkan-driver: packaged vulkan driver (32 bit) [installed]
    lib32-libappindicator-gtk2: added tray icon functionality
    xdg-desktop-portal: required for steam-runtime-urlopen to open some URLs
    [installed]
(864/929) upgrading strawberry                     [######################] 100%
(865/929) upgrading sudo                           [######################] 100%
(866/929) upgrading systemd-sysvcompat             [######################] 100%
(867/929) upgrading tcl                            [######################] 100%
(868/929) installing libsigc++-3.0                 [######################] 100%
(869/929) installing glibmm-2.68                   [######################] 100%
(870/929) installing openssl-1.1                   [######################] 100%
(871/929) upgrading telegram-desktop               [######################] 100%
(872/929) upgrading terminus-font                  [######################] 100%
(873/929) upgrading texinfo                        [######################] 100%
(874/929) upgrading thunar-media-tags-plugin       [######################] 100%
(875/929) upgrading thunar-volman                  [######################] 100%
(876/929) upgrading thunderbird                    [######################] 100%
(877/929) upgrading vte-common                     [######################] 100%
(878/929) upgrading vte3                           [######################] 100%
(879/929) upgrading xapp                           [######################] 100%
(880/929) upgrading xorg-xhost                     [######################] 100%
(881/929) upgrading timeshift                      [######################] 100%
(882/929) upgrading tlp                            [######################] 100%
New optional dependencies for tlp
    acpi_call: ThinkPad battery functions, SandyBridge and newer (2011 onwards)
    for kernels <5.17
(883/929) upgrading tumbler                        [######################] 100%
(884/929) upgrading unrar                          [######################] 100%
(885/929) upgrading upower                         [######################] 100%
(886/929) upgrading vi                             [######################] 100%
(887/929) upgrading vlc                            [######################] 100%
New optional dependencies for vlc
    live-media: streaming over RTSP
(888/929) upgrading vpnc                           [######################] 100%
(889/929) upgrading vulkan-intel                   [######################] 100%
(890/929) upgrading wayland-protocols              [######################] 100%
(891/929) upgrading webkit2gtk                     [######################] 100%
(892/929) upgrading wireless-regdb                 [######################] 100%
(893/929) upgrading xcursor-breeze                 [######################] 100%
(894/929) upgrading xdg-user-dirs                  [######################] 100%
(895/929) upgrading xf86-input-elographics         [######################] 100%
(896/929) upgrading xf86-input-void                [######################] 100%
(897/929) upgrading xf86-input-wacom               [######################] 100%
(898/929) upgrading xf86-video-ati                 [######################] 100%
(899/929) upgrading xf86-video-intel               [######################] 100%
(900/929) upgrading xfce4-appfinder                [######################] 100%
(901/929) upgrading xfce4-panel                    [######################] 100%
(902/929) upgrading xfce4-cpufreq-plugin           [######################] 100%
(903/929) upgrading xfce4-cpugraph-plugin          [######################] 100%
(904/929) upgrading xfce4-notifyd                  [######################] 100%
(905/929) upgrading xfce4-power-manager            [######################] 100%
(906/929) upgrading xfce4-pulseaudio-plugin        [######################] 100%
(907/929) upgrading xfce4-screenshooter            [######################] 100%
(908/929) upgrading xfce4-sensors-plugin           [######################] 100%
(909/929) upgrading xorg-xinit                     [######################] 100%
(910/929) upgrading xfce4-session                  [######################] 100%
New optional dependencies for xfce4-session
    light-locker: for locking screen with xflock4 [installed]
(911/929) installing elementary-icon-theme         [######################] 100%
(912/929) upgrading xfce4-settings                 [######################] 100%
(913/929) upgrading xfce4-systemload-plugin        [######################] 100%
(914/929) upgrading xfce4-taskmanager              [######################] 100%
(915/929) upgrading xfce4-whiskermenu-plugin       [######################] 100%
(916/929) upgrading xfce4-xkb-plugin               [######################] 100%
New optional dependencies for xfce4-xkb-plugin
    xfce4-notifyd: show notifications on layout change [installed]
(917/929) upgrading xfdesktop                      [######################] 100%
(918/929) upgrading xfwm4                          [######################] 100%
(919/929) upgrading xorg-bdftopcf                  [######################] 100%
(920/929) upgrading xorg-font-util                 [######################] 100%
(921/929) upgrading xorg-xkill                     [######################] 100%
(922/929) upgrading xorg-xmessage                  [######################] 100%
(923/929) upgrading yasm                           [######################] 100%
(924/929) upgrading yay                            [######################] 100%
(925/929) upgrading yelp-xsl                       [######################] 100%
(926/929) upgrading yelp                           [######################] 100%
(927/929) upgrading zensu                          [######################] 100%
(928/929) upgrading zita-alsa-pcmi                 [######################] 100%
(929/929) upgrading zsh                            [######################] 100%
:: Running post-transaction hooks...
( 1/40) Creating system user accounts...
Creating group 'rpcuser' with GID 34.
Creating user 'rpcuser' (RPC Service User) with UID 34 and GID 34.
( 2/40) Updating journal message catalog...
( 3/40) Reloading system manager configuration...
  Skipped: Running in chroot.
( 4/40) Updating udev hardware database...
( 5/40) Applying kernel sysctl settings...
  Skipped: Running in chroot.
( 6/40) Creating temporary files...
( 7/40) Reloading device manager configuration...
  Skipped: Running in chroot.
( 8/40) Arming ConditionNeedsUpdate...
( 9/40) Updating the MIME type database...
(10/40) Updating fontconfig configuration...
(11/40) Rebuilding certificate stores...
(12/40) Updating module dependencies...
(13/40) Restarting cronie for libc upgrade...
Running in chroot, ignoring command 'try-restart'
(14/40) Updating linux initcpios...
==> Building image from preset: /etc/mkinitcpio.d/linux510.preset: 'default'
  -> -k /boot/vmlinuz-5.10-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.10-x86_64.img
==> Starting build: 5.10.167-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.10-x86_64.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux510.preset: 'fallback'
  -> -k /boot/vmlinuz-5.10-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.10-x86_64-fallback.img -S autodetect
==> Starting build: 5.10.167-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> WARNING: Possibly missing firmware for module: qed
==> WARNING: Possibly missing firmware for module: qla2xxx
==> WARNING: Possibly missing firmware for module: bfa
==> WARNING: Possibly missing firmware for module: qla1280
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.10-x86_64-fallback.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux513.preset: 'default'
  -> -k /boot/vmlinuz-5.13-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.13-x86_64.img
==> Starting build: 5.13.19-2-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.13-x86_64.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux513.preset: 'fallback'
  -> -k /boot/vmlinuz-5.13-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.13-x86_64-fallback.img -S autodetect
==> Starting build: 5.13.19-2-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> WARNING: Possibly missing firmware for module: qed
==> WARNING: Possibly missing firmware for module: qla2xxx
==> WARNING: Possibly missing firmware for module: bfa
==> WARNING: Possibly missing firmware for module: qla1280
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.13-x86_64-fallback.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'default'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64.img
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'fallback'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64-fallback.img -S autodetect
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> WARNING: Possibly missing firmware for module: qed
==> WARNING: Possibly missing firmware for module: qla2xxx
==> WARNING: Possibly missing firmware for module: bfa
==> WARNING: Possibly missing firmware for module: qla1280
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64-fallback.img
==> Image generation successful
(15/40) Qt5 Upgrade Warning
[WARNING] qt5-base was updated, qt5 applications will break until qt5-styleplugins is rebuilt.
(16/40) Updating the appstream cache...
✔ Metadata cache was updated successfully.
(17/40) Updating Grub-Bootmenu
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
Found linux image: /boot/vmlinuz-5.15-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.15-x86_64.img
Found initrd fallback image: /boot/initramfs-5.15-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.13-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.13-x86_64.img
Found initrd fallback image: /boot/initramfs-5.13-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.10-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.10-x86_64.img
Found initrd fallback image: /boot/initramfs-5.10-x86_64-fallback.img
Warning: 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.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
Adding boot menu entry for UEFI Firmware Settings ...
Root filesystem isn't btrfs
If you think an error has occurred, please file a bug report at "https://github.com/Antynea/grub-btrfs"
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
done
(18/40) Reloading system bus configuration...
  Skipped: Running in chroot.
(19/40) Updating system dconf databases...
(20/40) Warn about old perl modules
(21/40) Copy Firefox Distribution Settings
(22/40) Updating fontconfig cache...
(23/40) Probing GDK-Pixbuf loader modules...
(24/40) Updating GIO module cache...
(25/40) Compiling GSettings XML schema files...
(26/40) Probing GTK2 input method modules...
(27/40) Probing GTK3 input method modules...
(28/40) Updating icon theme caches...
(29/40) Updating GTK4 module cache...
(30/40) Reloading GVFS config...
(31/40) Restore Linux kernel modules

==> Warning:
	 -> Kernel has been updated. Modules of the current kernel
	 -> have been backed up so you can continue to use your
	 -> computer. However, the new kernel will only work
	 -> at next boot.
	
	
(32/40) Hiding redundant menu entries
(33/40) Creating background picture sym-links for XFCE...
'/usr/share/backgrounds/xfce/illyria-default.jpg' -> '/usr/share/backgrounds/illyria-default.jpg'
'/usr/share/backgrounds/xfce/illyria-default-lockscreen.jpg' -> '/usr/share/backgrounds/illyria-default-lockscreen.jpg'
(34/40) Changing NetworkManager Connectivity-Ping to manjaro.org
(35/40) Configuring pacman-mirrors ...
::INFO Downloading mirrors from Manjaro
::INFO => Mirror pool: https://repo.manjaro.org/mirrors.json
::INFO => Mirror status: https://repo.manjaro.org/status.json
hint: use `pacman-mirrors` to generate and update your pacman mirrorlist.
(36/40) Updating the info directory file...
(37/40) Copy Thunderbird Distribution Settings
(38/40) Updating the desktop file MIME type cache...
(39/40) Updating the vlc plugin cache...
(40/40) Updating X fontdir indices...
[manjaro@manjaro ~]$ 

So I reran the kernal install as instructed:

[manjaro@manjaro ~]$ sudo pacman --sysroot /mnt -S linux515
warning: linux515-5.15.93-1 is up to date -- reinstalling
resolving dependencies...
looking for conflicting packages...

Packages (1) linux515-5.15.93-1

Total Installed Size:  104.67 MiB
Net Upgrade Size:        0.00 MiB

:: Proceed with installation? [Y/n] Y
(1/1) checking keys in keyring                                                                      [###########################################################] 100%
(1/1) checking package integrity                                                                    [###########################################################] 100%
(1/1) loading package files                                                                         [###########################################################] 100%
(1/1) checking for file conflicts                                                                   [###########################################################] 100%
(1/1) checking available disk space                                                                 [###########################################################] 100%
:: Running pre-transaction hooks...
(1/2) Creating Timeshift snapshot before upgrade...
==> skipping timeshift-autosnap due skipRsyncAutosnap in /etc/timeshift-autosnap.conf set to TRUE.
(2/2) Save Linux kernel modules
:: Processing package changes...
(1/1) reinstalling linux515                                                                         [###########################################################] 100%
:: Running post-transaction hooks...
(1/5) Arming ConditionNeedsUpdate...
(2/5) Updating module dependencies...
(3/5) Updating linux initcpios...
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'default'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64.img
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [autodetect]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64.img
==> Image generation successful
==> Building image from preset: /etc/mkinitcpio.d/linux515.preset: 'fallback'
  -> -k /boot/vmlinuz-5.15-x86_64 -c /etc/mkinitcpio.conf -g /boot/initramfs-5.15-x86_64-fallback.img -S autodetect
==> Starting build: 5.15.93-1-MANJARO
  -> Running build hook: [base]
  -> Running build hook: [udev]
  -> Running build hook: [modconf]
  -> Running build hook: [block]
==> WARNING: Possibly missing firmware for module: qed
==> WARNING: Possibly missing firmware for module: qla2xxx
==> WARNING: Possibly missing firmware for module: bfa
==> WARNING: Possibly missing firmware for module: qla1280
  -> Running build hook: [keyboard]
  -> Running build hook: [keymap]
  -> Running build hook: [resume]
  -> Running build hook: [filesystems]
  -> Running build hook: [fsck]
==> Generating module dependencies
==> Creating gzip-compressed initcpio image: /boot/initramfs-5.15-x86_64-fallback.img
==> Image generation successful
(4/5) Updating Grub-Bootmenu
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
Found linux image: /boot/vmlinuz-5.15-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.15-x86_64.img
Found initrd fallback image: /boot/initramfs-5.15-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.13-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.13-x86_64.img
Found initrd fallback image: /boot/initramfs-5.13-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.10-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.10-x86_64.img
Found initrd fallback image: /boot/initramfs-5.10-x86_64-fallback.img
Warning: 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.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
Adding boot menu entry for UEFI Firmware Settings ...
Root filesystem isn't btrfs
If you think an error has occurred, please file a bug report at "https://github.com/Antynea/grub-btrfs"
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
done
(5/5) Restore Linux kernel modules

==> Warning:
	 -> Kernel has been updated. Modules of the current kernel
	 -> have been backed up so you can continue to use your
	 -> computer. However, the new kernel will only work
	 -> at next boot.

So now I should be good to restart? Should I expect to see just the manjaro option in GRUB or both manjaro and my Windows booot?

yes reboot, and you have still some leftovers from old kernels, looking at the update-grub output… we can fix it when you are back in your system… the windows will probably not be shown in the grub menu, you have to run:
sudo update-grub
from your installation

1 Like

That worked! I’m in my installation. Just ran the update and it looks like it worked?

update-grub
[sudo] password for sage: 
Generating grub configuration file ...
Found theme: /usr/share/grub/themes/manjaro/theme.txt
Found linux image: /boot/vmlinuz-5.15-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.15-x86_64.img
Found initrd fallback image: /boot/initramfs-5.15-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.13-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.13-x86_64.img
Found initrd fallback image: /boot/initramfs-5.13-x86_64-fallback.img
Found linux image: /boot/vmlinuz-5.10-x86_64
Found initrd image: /boot/amd-ucode.img /boot/initramfs-5.10-x86_64.img
Found initrd fallback image: /boot/initramfs-5.10-x86_64-fallback.img
Warning: 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.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
grub-probe: error: cannot find a GRUB drive for /dev/sda1.  Check your device.map.
Found Windows Boot Manager on /dev/nvme0n1p1@/EFI/Microsoft/Boot/bootmgfw.efi
Adding boot menu entry for UEFI Firmware Settings ...
Root filesystem isn't btrfs
If you think an error has occurred, please file a bug report at "https://github.com/Antynea/grub-btrfs"
Found memtest86+ image: /boot/memtest86+/memtest.bin
/usr/bin/grub-probe: warning: unknown device type nvme0n1.
done

yes windows is detected:


but you still have some kernel leftovers, so post output from:

ls /etc/mkinitcpio.d/*.preset
sudo ls /boot/initramfs-*
sudo ls /boot/vmlinuz-*
sudo ls /usr/lib/modules/*
1 Like
ls /etc/mkinitcpio.d/*.preset
/etc/mkinitcpio.d/linux510.preset  /etc/mkinitcpio.d/linux515.preset
/etc/mkinitcpio.d/linux513.preset
ls /etc/mkinitcpio.d/*.preset
/etc/mkinitcpio.d/linux510.preset  /etc/mkinitcpio.d/linux515.preset
/etc/mkinitcpio.d/linux513.preset
[~]$ sudo ls /boot/vmlinuz-*
/boot/vmlinuz-5.10-x86_64  /boot/vmlinuz-5.13-x86_64  /boot/vmlinuz-5.15-x86_64
[~]$ sudo ls /usr/lib/modules/*
/usr/lib/modules/5.10.167-1-MANJARO:
extramodules	   modules.builtin	      modules.dep.bin  modules.symbols.bin
kernel		   modules.builtin.alias.bin  modules.devname  pkgbase
kernelbase	   modules.builtin.bin	      modules.order    vmlinuz
modules.alias	   modules.builtin.modinfo    modules.softdep
modules.alias.bin  modules.dep		      modules.symbols

/usr/lib/modules/5.13.19-2-MANJARO:
extramodules	   modules.builtin	      modules.dep.bin  modules.symbols.bin
kernel		   modules.builtin.alias.bin  modules.devname  pkgbase
kernelbase	   modules.builtin.bin	      modules.order    vmlinuz
modules.alias	   modules.builtin.modinfo    modules.softdep
modules.alias.bin  modules.dep		      modules.symbols

/usr/lib/modules/5.15.93-1-MANJARO:
extramodules	   modules.builtin	      modules.dep.bin  modules.symbols.bin
kernel		   modules.builtin.alias.bin  modules.devname  pkgbase
kernelbase	   modules.builtin.bin	      modules.order    vmlinuz
modules.alias	   modules.builtin.modinfo    modules.softdep
modules.alias.bin  modules.dep		      modules.symbols

/usr/lib/modules/extramodules-5.10-MANJARO:
version

/usr/lib/modules/extramodules-5.13-MANJARO:
version

/usr/lib/modules/extramodules-5.15-MANJARO:
version