You are not logged in.

#1 2026-04-03 19:24:32

Big Scorpio
Member
Registered: 2024-12-15
Posts: 90

mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Hello Arch Friends,

As part of trying to fix my KDE Plasma Wayland login error ( https://bbs.archlinux.org/viewtopic.php?id=312946 ) I ran into a bigger problem. Since I performed "sudo pacman -Syu" my mkinitcpio broke and won't generate a initramfs anymore. This happened during the system upgrade and also manually invoking mkinitcpio.

Here is what happens when I run mkinitcpio:

[motherfucker_big_scorpio@Nexus ~]$ sudo mkinitcpio -P
==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'default'
==> Using default configuration file: '/etc/mkinitcpio.conf'
  -> -k /boot/vmlinuz-linux-lts -g /boot/initramfs-linux-lts.img
==> Starting build: '6.18.21-1-lts'
  -> Running build hook: [base]
/usr/bin/mkinitcpio: line 664: 58975 Segmentation fault         (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"
==> Building image from preset: /etc/mkinitcpio.d/linux.preset: 'default'
==> Using default configuration file: '/etc/mkinitcpio.conf'
  -> -k /boot/vmlinuz-linux -g /boot/initramfs-linux.img
==> Starting build: '6.19.10-arch1-1'
  -> Running build hook: [base]
/usr/bin/mkinitcpio: line 664: 59196 Segmentation fault         (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"
[motherfucker_big_scorpio@Nexus ~]$ 

in my journalctl i found these entries, that don't indicate anything useful.

Apr 03 21:08:20 Nexus sudo[58959]: motherfucker_big_scorpio : TTY=pts/1 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/mkinitcpio -P
Apr 03 21:08:20 Nexus sudo[58959]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)
Apr 03 21:08:20 Nexus systemd-coredump[59189]: Process 58975 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 03 21:08:20 Nexus systemd[1]: Started Process Core Dump (PID 59189/UID 0).
Apr 03 21:08:20 Nexus systemd-coredump[59190]: Resource limits disable core dumping for process 58975 (bash).
Apr 03 21:08:20 Nexus systemd-coredump[59190]: [?] Process 58975 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 03 21:08:20 Nexus systemd[1]: systemd-coredump@912-278-59189_59190-0.service: Deactivated successfully.
Apr 03 21:08:20 Nexus systemd-coredump[59411]: Process 59196 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 03 21:08:20 Nexus systemd[1]: Started Process Core Dump (PID 59411/UID 0).
Apr 03 21:08:20 Nexus systemd-coredump[59412]: Resource limits disable core dumping for process 59196 (bash).
Apr 03 21:08:20 Nexus systemd-coredump[59412]: [?] Process 59196 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 03 21:08:20 Nexus systemd[1]: systemd-coredump@913-16723-59411_59412-0.service: Deactivated successfully.
Apr 03 21:08:20 Nexus sudo[58959]: pam_unix(sudo:session): session closed for user root
Apr 03 21:08:24 Nexus sudo[59417]: motherfucker_big_scorpio : TTY=pts/3 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/journalctl -b
Apr 03 21:08:24 Nexus sudo[59417]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)

These are my /etc/mkinitcpio.conf contents:

MODULES=(f2fs i915 nvidia nvidia_modeset nvidia_uvm nvidia_drm)
BINARIES=()
FILES=(/etc/cryptsetup-keys.d/cryptlvm.key)
HOOKS=(base udev autodetect microcode modconf keyboard keymap consolefont block encrypt lvm2 filesystems fsck)

I attempted to generate a fallback initramfs too like here https://wiki.archlinux.org/title/Mkinit … generation however

/usr/bin/mkinitcpio: line 664: 60128 Segmentation fault         (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"
==> Building image from preset: /etc/mkinitcpio.d/linux-fallback.preset: 'fallback'
==> Using default configuration file: '/etc/mkinitcpio.conf'
  -> -k /boot/vmlinuz-linux-lts -g /boot/initramfs-linux-lts-fallback.img -S autodetect
==> Starting build: '6.18.21-1-lts'
  -> Running build hook: [base]
/usr/bin/mkinitcpio: line 664: 60350 Segmentation fault         (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"
==> Building image from preset: /etc/mkinitcpio.d/linux-lts.preset: 'default'

The full journalctl is the same as in the link i posted above but here it is again for convenience (0x0.st wouldn't let me upload it) https://drive.proton.me/urls/25N0QRNSF0#WzJPKYyArnk8

Password is "ArchLinux"

I'm stuck right now with an unbootable Linux OS and can only arch-chroot into it.

Assistance please.
Would it make sense to make a hard reset on initramfs and carry over the conf contents? If yes, how can i do that?

back to Windows >:C

Offline

#2 2026-04-03 20:27:45

dimich
Member
From: Kharkiv, Ukraine
Registered: 2009-11-03
Posts: 547

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Big Scorpio wrote:
/usr/bin/mkinitcpio: line 664: 58975 Segmentation fault         (core dumped) MKINITCPIO_PROCESS_PRESET="$preset_name" "$0" "${preset_cmd[@]}"

It's weird that mkinitcpio v40 line 664 is not as shown above.

What version of mkinitcpio installed?

$ pacman -Q mkinitcpio
Big Scorpio wrote:
Apr 03 21:08:20 Nexus systemd-coredump[59189]: Process 58975 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...

Looks like a problem with bash.

$ pacman -Qkk bash glibc readline ncurses

Does dry run crash?

$ mkinitcpio -v

Offline

#3 2026-04-03 20:46:17

-thc
Member
Registered: 2017-03-15
Posts: 1,115

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

If you take your journal and extract only the coredumps

Apr 03 17:30:27 Nexus systemd-coredump[657]: Process 555 ((udev-worker)) of user 0 dumped core.
Apr 03 17:30:29 Nexus systemd-coredump[803]: Process 575 ((udev-worker)) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:29 Nexus systemd-coredump[804]: Process 575 ((udev-worker)) of user 0 dumped core.
Apr 03 17:30:29 Nexus systemd-coredump[821]: Process 564 ((udev-worker)) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:29 Nexus systemd-coredump[831]: Process 564 ((udev-worker)) of user 0 dumped core.
Apr 03 17:30:38 Nexus systemd-coredump[980]: Process 974 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:38 Nexus systemd-coredump[981]: Process 974 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:38 Nexus systemd-coredump[994]: Process 964 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:39 Nexus systemd-coredump[995]: Process 964 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:39 Nexus systemd-coredump[1008]: Process 1006 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:39 Nexus systemd-coredump[1011]: Process 1002 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:39 Nexus systemd-coredump[1009]: Process 1006 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:39 Nexus systemd-coredump[1012]: Process 1002 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:39 Nexus systemd-coredump[1031]: Process 1029 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:39 Nexus systemd-coredump[1034]: Process 1025 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:39 Nexus systemd-coredump[1032]: Process 1029 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:39 Nexus systemd-coredump[1035]: Process 1025 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:39 Nexus systemd-coredump[1054]: Process 1052 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:40 Nexus systemd-coredump[1057]: Process 1048 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:40 Nexus systemd-coredump[1055]: Process 1052 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:40 Nexus systemd-coredump[1058]: Process 1048 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:40 Nexus systemd-coredump[1077]: Process 1075 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:40 Nexus systemd-coredump[1080]: Process 1071 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:40 Nexus systemd-coredump[1078]: Process 1075 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:40 Nexus systemd-coredump[1081]: Process 1071 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:40 Nexus systemd-coredump[1098]: Process 1094 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:40 Nexus systemd-coredump[1099]: Process 1094 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:40 Nexus systemd-coredump[1110]: Process 1106 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:41 Nexus systemd-coredump[1111]: Process 1106 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:41 Nexus systemd-coredump[1122]: Process 1118 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:41 Nexus systemd-coredump[1123]: Process 1118 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:41 Nexus systemd-coredump[1134]: Process 1130 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:41 Nexus systemd-coredump[1135]: Process 1130 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:41 Nexus systemd-coredump[1146]: Process 1142 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1147]: Process 1142 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1158]: Process 1154 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1159]: Process 1154 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1170]: Process 970 (kcminit_startup) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1173]: Process 967 (ksplashqml) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1175]: Process 970 (kcminit_startup) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1176]: Process 967 (ksplashqml) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1204]: Process 1196 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1209]: Process 1194 (ksmserver) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1207]: Process 1196 (kded6) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1212]: Process 1194 (ksmserver) of user 1000 dumped core.
Apr 03 17:30:42 Nexus systemd-coredump[1232]: Process 1229 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:42 Nexus systemd-coredump[1238]: Process 1237 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1235]: Process 1229 (plasmashell) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1241]: Process 1237 (kded6) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1261]: Process 1254 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1264]: Process 1255 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1266]: Process 1260 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1280]: Process 1259 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1285]: Process 1284 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1290]: Process 1279 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1271]: Process 1260 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1265]: Process 1254 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1269]: Process 1255 (kaccess) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1282]: Process 1259 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1288]: Process 1284 (kded6) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1291]: Process 1279 (plasmashell) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1442]: Process 1431 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1459]: Process 1436 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1463]: Process 1433 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1480]: Process 1435 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1484]: Process 1455 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1511]: Process 1456 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1446]: Process 1431 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1467]: Process 1436 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1472]: Process 1433 (kaccess) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1489]: Process 1455 (kded6) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1488]: Process 1435 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1517]: Process 1456 (plasmashell) of user 1000 dumped core.
Apr 03 17:30:43 Nexus systemd-coredump[1594]: Process 1585 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1595]: Process 1587 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1610]: Process 1609 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:43 Nexus systemd-coredump[1612]: Process 1608 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1600]: Process 1587 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1599]: Process 1585 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1636]: Process 1619 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1615]: Process 1609 (kded6) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1616]: Process 1608 (kaccess) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1658]: Process 1655 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1661]: Process 1657 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1639]: Process 1619 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1676]: Process 1668 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1663]: Process 1655 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1664]: Process 1657 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1679]: Process 1668 (kaccess) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1700]: Process 1687 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1708]: Process 1704 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1714]: Process 1711 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1723]: Process 1721 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:44 Nexus systemd-coredump[1703]: Process 1687 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1712]: Process 1704 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1717]: Process 1711 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1726]: Process 1721 (kaccess) of user 1000 dumped core.
Apr 03 17:30:44 Nexus systemd-coredump[1752]: Process 1746 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:45 Nexus systemd-coredump[1755]: Process 1746 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:30:46 Nexus systemd-coredump[1808]: Process 1782 (steam) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:46 Nexus systemd-coredump[1810]: Process 1782 (steam) of user 1000 dumped core.
Apr 03 17:30:54 Nexus systemd-coredump[1865]: Process 1860 (ksplashqml) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:30:54 Nexus systemd-coredump[1872]: Process 1864 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:30:54 Nexus systemd-coredump[1874]: Process 1864 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:30:54 Nexus systemd-coredump[1870]: Process 1860 (ksplashqml) of user 1000 dumped core.
Apr 03 17:31:04 Nexus systemd-coredump[1979]: Process 1977 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:04 Nexus systemd-coredump[1980]: Process 1977 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:04 Nexus systemd-coredump[1990]: Process 1969 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:04 Nexus systemd-coredump[1991]: Process 1969 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:04 Nexus systemd-coredump[2004]: Process 2002 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:04 Nexus systemd-coredump[2007]: Process 1998 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:04 Nexus systemd-coredump[2005]: Process 2002 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2008]: Process 1998 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2027]: Process 2025 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2030]: Process 2021 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2028]: Process 2025 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2031]: Process 2021 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2050]: Process 2048 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2053]: Process 2044 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2051]: Process 2048 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2054]: Process 2044 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:05 Nexus systemd-coredump[2073]: Process 2071 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2076]: Process 2067 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:05 Nexus systemd-coredump[2074]: Process 2071 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:06 Nexus systemd-coredump[2077]: Process 2067 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:06 Nexus systemd-coredump[2094]: Process 2090 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:06 Nexus systemd-coredump[2095]: Process 2090 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:06 Nexus systemd-coredump[2106]: Process 2102 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:06 Nexus systemd-coredump[2107]: Process 2102 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:06 Nexus systemd-coredump[2118]: Process 2114 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:07 Nexus systemd-coredump[2119]: Process 2114 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:07 Nexus systemd-coredump[2130]: Process 2126 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:07 Nexus systemd-coredump[2131]: Process 2126 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:07 Nexus systemd-coredump[2142]: Process 2138 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:07 Nexus systemd-coredump[2143]: Process 2138 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:07 Nexus systemd-coredump[2154]: Process 2150 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2155]: Process 2150 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2165]: Process 1975 (kcminit_startup) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2168]: Process 1972 (ksplashqml) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2169]: Process 1975 (kcminit_startup) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2172]: Process 1972 (ksplashqml) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2202]: Process 1933 (ksecretd) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2208]: Process 2192 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2214]: Process 2190 (ksmserver) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2205]: Process 1933 (ksecretd) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2211]: Process 2192 (kded6) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2217]: Process 2190 (ksmserver) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2242]: Process 2238 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2249]: Process 2245 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2246]: Process 2238 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2252]: Process 2245 (kded6) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2273]: Process 2267 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2280]: Process 2271 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2283]: Process 2268 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2297]: Process 2270 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2303]: Process 2295 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2307]: Process 2289 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:08 Nexus systemd-coredump[2285]: Process 2271 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2286]: Process 2268 (kaccess) of user 1000 dumped core.
Apr 03 17:31:08 Nexus systemd-coredump[2276]: Process 2267 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2298]: Process 2270 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2304]: Process 2295 (kded6) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2310]: Process 2289 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2483]: Process 2466 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2500]: Process 2453 (plasma-fallback) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2505]: Process 2470 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2526]: Process 2467 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2542]: Process 2452 (DiscoverNotifie) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2554]: Process 2469 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2561]: Process 2502 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2582]: Process 2503 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2537]: Process 2467 (kaccess) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2569]: Process 2502 (kded6) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2508]: Process 2453 (plasma-fallback) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2547]: Process 2452 (DiscoverNotifie) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2490]: Process 2466 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2564]: Process 2469 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2515]: Process 2470 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2583]: Process 2503 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:09 Nexus systemd-coredump[2675]: Process 2648 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2685]: Process 2660 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2705]: Process 2683 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2709]: Process 2692 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2723]: Process 2691 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:09 Nexus systemd-coredump[2678]: Process 2648 (kaccess) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2688]: Process 2660 (kded6) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2712]: Process 2692 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2711]: Process 2683 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2724]: Process 2691 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2760]: Process 2758 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2770]: Process 2764 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2775]: Process 2763 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2787]: Process 2773 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2767]: Process 2758 (kaccess) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2776]: Process 2764 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2780]: Process 2763 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2788]: Process 2773 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2818]: Process 2815 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2826]: Process 2814 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2830]: Process 2820 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2821]: Process 2815 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2827]: Process 2814 (kaccess) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2833]: Process 2820 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:10 Nexus systemd-coredump[2845]: Process 2835 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:10 Nexus systemd-coredump[2856]: Process 2835 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:11 Nexus systemd-coredump[2868]: Process 2632 (steam) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:12 Nexus systemd-coredump[2870]: Process 2632 (steam) of user 1000 dumped core.
Apr 03 17:31:13 Nexus systemd-coredump[2884]: Process 2880 (baloo_file_extr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:13 Nexus systemd-coredump[2885]: Process 2880 (baloo_file_extr) of user 1000 dumped core.
Apr 03 17:31:13 Nexus systemd-coredump[2894]: Process 2891 (baloo_file_extr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:13 Nexus systemd-coredump[2897]: Process 2891 (baloo_file_extr) of user 1000 dumped core.
Apr 03 17:31:13 Nexus systemd-coredump[2906]: Process 2904 (baloo_file_extr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:13 Nexus systemd-coredump[2909]: Process 2904 (baloo_file_extr) of user 1000 dumped core.
Apr 03 17:31:13 Nexus systemd-coredump[2920]: Process 2916 (baloo_file_extr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:13 Nexus systemd-coredump[2921]: Process 2916 (baloo_file_extr) of user 1000 dumped core.
Apr 03 17:31:17 Nexus systemd-coredump[3011]: Process 3009 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:17 Nexus systemd-coredump[3012]: Process 3009 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:17 Nexus systemd-coredump[3022]: Process 3002 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:17 Nexus systemd-coredump[3023]: Process 3002 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3036]: Process 3034 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3039]: Process 3030 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3037]: Process 3034 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3040]: Process 3030 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3059]: Process 3057 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3062]: Process 3053 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3060]: Process 3057 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3063]: Process 3053 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3082]: Process 3080 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3085]: Process 3076 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3083]: Process 3080 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3086]: Process 3076 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:18 Nexus systemd-coredump[3105]: Process 3103 (xdg-desktop-por) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3108]: Process 3099 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:18 Nexus systemd-coredump[3106]: Process 3103 (xdg-desktop-por) of user 1000 dumped core.
Apr 03 17:31:19 Nexus systemd-coredump[3109]: Process 3099 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:19 Nexus systemd-coredump[3126]: Process 3122 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:19 Nexus systemd-coredump[3127]: Process 3122 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:19 Nexus systemd-coredump[3138]: Process 3134 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:19 Nexus systemd-coredump[3139]: Process 3134 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:19 Nexus systemd-coredump[3150]: Process 3146 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:20 Nexus systemd-coredump[3151]: Process 3146 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:20 Nexus systemd-coredump[3162]: Process 3158 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:20 Nexus systemd-coredump[3163]: Process 3158 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:20 Nexus systemd-coredump[3174]: Process 3170 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:20 Nexus systemd-coredump[3175]: Process 3170 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:20 Nexus systemd-coredump[3186]: Process 3182 (kwin_wayland) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:20 Nexus systemd-coredump[3187]: Process 3182 (kwin_wayland) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3197]: Process 3007 (kcminit_startup) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3200]: Process 3005 (ksplashqml) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3202]: Process 3007 (kcminit_startup) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3203]: Process 3005 (ksplashqml) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3265]: Process 2935 (ksecretd) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3271]: Process 3254 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3277]: Process 3252 (ksmserver) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3269]: Process 2935 (ksecretd) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3274]: Process 3254 (kded6) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3280]: Process 3252 (ksmserver) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3306]: Process 3303 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3312]: Process 3305 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3309]: Process 3303 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3315]: Process 3305 (kded6) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3336]: Process 3328 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3340]: Process 3334 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3342]: Process 3329 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3360]: Process 3333 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3364]: Process 3354 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3370]: Process 3346 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:21 Nexus systemd-coredump[3349]: Process 3334 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3343]: Process 3328 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:21 Nexus systemd-coredump[3350]: Process 3329 (kaccess) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3361]: Process 3333 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3367]: Process 3354 (kded6) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3374]: Process 3346 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3583]: Process 3537 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3599]: Process 3555 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3605]: Process 3540 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3607]: Process 3518 (plasma-fallback) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3616]: Process 3517 (DiscoverNotifie) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3632]: Process 3603 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3637]: Process 3548 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3644]: Process 3606 (plasmashell) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3589]: Process 3537 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3617]: Process 3540 (kaccess) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3618]: Process 3518 (plasma-fallback) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3610]: Process 3555 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3622]: Process 3517 (DiscoverNotifie) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3634]: Process 3603 (kded6) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3646]: Process 3606 (plasmashell) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3640]: Process 3548 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3741]: Process 3714 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3756]: Process 3721 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3765]: Process 3742 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3777]: Process 3768 (kded6) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3760]: Process 3721 (kaccess) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3759]: Process 3714 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3800]: Process 3778 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:22 Nexus systemd-coredump[3769]: Process 3742 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:22 Nexus systemd-coredump[3779]: Process 3768 (kded6) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3819]: Process 3817 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3830]: Process 3822 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3803]: Process 3778 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3834]: Process 3824 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3823]: Process 3817 (kaccess) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3835]: Process 3822 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3843]: Process 3824 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3867]: Process 3854 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3875]: Process 3872 (gmenudbusmenupr) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3883]: Process 3870 (kaccess) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3888]: Process 3878 (xembedsniproxy) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:23 Nexus systemd-coredump[3871]: Process 3854 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3879]: Process 3872 (gmenudbusmenupr) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3885]: Process 3870 (kaccess) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3891]: Process 3878 (xembedsniproxy) of user 1000 dumped core.
Apr 03 17:31:23 Nexus systemd-coredump[3919]: Process 3917 (org_kde_powerde) of user 1000 terminated abnormally with signal 6/ABRT, processing...
Apr 03 17:31:24 Nexus systemd-coredump[3922]: Process 3917 (org_kde_powerde) of user 1000 dumped core.
Apr 03 17:31:24 Nexus systemd-coredump[3934]: Process 3699 (steam) of user 1000 terminated abnormally with signal 11/SEGV, processing...
Apr 03 17:31:25 Nexus systemd-coredump[3936]: Process 3699 (steam) of user 1000 dumped core.

you see that 158 processes terminated abnormally inside one minute. Your system is cooked. Looks to me like an elementary library is corrupted.

Offline

#4 2026-04-03 21:39:13

dimich
Member
From: Kharkiv, Ukraine
Registered: 2009-11-03
Posts: 547

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

All crashes are either in udevadm or glib2, all end up with

#0  0x00007f8c9505df3f n/a (libc.so.6 + 0x35f3f)
#1  0x00007f8c9510eef1 n/a (libc.so.6 + 0xe6ef1)
#2  0x00007f8c9511232a fnmatch (libc.so.6 + 0xea32a)

Either glibc is corrupted or system is upgraded partially.

Offline

#5 2026-04-04 17:34:40

Big Scorpio
Member
Registered: 2024-12-15
Posts: 90

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

[motherfucker_big_scorpio@Nexus ~]$ pacman -Q mkinitcpio
mkinitcpio 40-4
[motherfucker_big_scorpio@Nexus ~]$ pacman -Qkk bash glibc readline ncurses
bash: 270 total files, 0 altered files
backup file: glibc: /etc/locale.gen (Modification time mismatch)
backup file: glibc: /etc/locale.gen (Size mismatch)
backup file: glibc: /etc/locale.gen (SHA256 checksum mismatch)
glibc: 1625 total files, 0 altered files
readline: 60 total files, 0 altered files
ncurses: 3967 total files, 0 altered files
[motherfucker_big_scorpio@Nexus ~]$ mkinitcpio -v
    located kernel image: '/lib/modules/6.18.21-1-lts/vmlinuz'
==> Starting dry run: '6.18.21-1-lts'
  -> Running build hook: [/usr/lib/initcpio/install/base]
    adding symlink: /usr/bin/[ -> busybox
    adding symlink: /usr/bin/arch -> busybox
    adding symlink: /usr/bin/ascii -> busybox
    adding symlink: /usr/bin/ash -> busybox
    adding symlink: /usr/bin/awk -> busybox
    adding symlink: /usr/bin/base32 -> busybox
    adding symlink: /usr/bin/base64 -> busybox
    adding symlink: /usr/bin/basename -> busybox
    adding symlink: /usr/bin/bc -> busybox
    adding symlink: /usr/bin/blkdiscard -> busybox
    adding symlink: /usr/bin/bzip2 -> busybox
    adding symlink: /usr/bin/cat -> busybox
    adding symlink: /usr/bin/chgrp -> busybox
    adding symlink: /usr/bin/chmod -> busybox
    adding symlink: /usr/bin/chown -> busybox
    adding symlink: /usr/bin/chroot -> busybox
    adding symlink: /usr/bin/clear -> busybox
    adding symlink: /usr/bin/cp -> busybox
    adding symlink: /usr/bin/cpio -> busybox
    adding symlink: /usr/bin/crc32 -> busybox
    adding symlink: /usr/bin/cttyhack -> busybox
    adding symlink: /usr/bin/cut -> busybox
    adding symlink: /usr/bin/dd -> busybox
    adding symlink: /usr/bin/df -> busybox
    adding symlink: /usr/bin/dirname -> busybox
    adding symlink: /usr/bin/dmesg -> busybox
    adding symlink: /usr/bin/du -> busybox
    adding symlink: /usr/bin/echo -> busybox
    adding symlink: /usr/bin/env -> busybox
    adding symlink: /usr/bin/expr -> busybox
    adding symlink: /usr/bin/fallocate -> busybox
    adding symlink: /usr/bin/false -> busybox
    adding symlink: /usr/bin/fatattr -> busybox
    adding symlink: /usr/bin/free -> busybox
    adding symlink: /usr/bin/fsfreeze -> busybox
    adding symlink: /usr/bin/fstrim -> busybox
    adding symlink: /usr/bin/fsync -> busybox
    adding symlink: /usr/bin/getopt -> busybox
    adding symlink: /usr/bin/grep -> busybox
    adding symlink: /usr/bin/gzip -> busybox
    adding symlink: /usr/bin/halt -> busybox
    adding symlink: /usr/bin/head -> busybox
    adding symlink: /usr/bin/hexdump -> busybox
    adding symlink: /usr/bin/hexedit -> busybox
    adding symlink: /usr/bin/i2ctransfer -> busybox
    adding symlink: /usr/bin/ifconfig -> busybox
    adding symlink: /usr/bin/init -> busybox
    adding symlink: /usr/bin/install -> busybox
    adding symlink: /usr/bin/ip -> busybox
    adding symlink: /usr/bin/ipaddr -> busybox
    adding symlink: /usr/bin/iplink -> busybox
    adding symlink: /usr/bin/ipneigh -> busybox
    adding symlink: /usr/bin/iproute -> busybox
    adding symlink: /usr/bin/iprule -> busybox
    adding symlink: /usr/bin/iptunnel -> busybox
    adding symlink: /usr/bin/kbd_mode -> busybox
    adding symlink: /usr/bin/kill -> busybox
    adding symlink: /usr/bin/killall -> busybox
    adding symlink: /usr/bin/less -> busybox
    adding symlink: /usr/bin/link -> busybox
    adding symlink: /usr/bin/ln -> busybox
    adding symlink: /usr/bin/loadfont -> busybox
    adding symlink: /usr/bin/loadkmap -> busybox
    adding symlink: /usr/bin/losetup -> busybox
    adding symlink: /usr/bin/ls -> busybox
    adding symlink: /usr/bin/lsscsi -> busybox
    adding symlink: /usr/bin/lzop -> busybox
    adding symlink: /usr/bin/md5sum -> busybox
    adding symlink: /usr/bin/mim -> busybox
    adding symlink: /usr/bin/mkdir -> busybox
    adding symlink: /usr/bin/mkfifo -> busybox
    adding symlink: /usr/bin/mknod -> busybox
    adding symlink: /usr/bin/mkpasswd -> busybox
    adding symlink: /usr/bin/mktemp -> busybox
    adding symlink: /usr/bin/mountpoint -> busybox
    adding symlink: /usr/bin/mv -> busybox
    adding symlink: /usr/bin/nc -> busybox
    adding symlink: /usr/bin/netstat -> busybox
    adding symlink: /usr/bin/nologin -> busybox
    adding symlink: /usr/bin/nproc -> busybox
    adding symlink: /usr/bin/nsenter -> busybox
    adding symlink: /usr/bin/nslookup -> busybox
    adding symlink: /usr/bin/nuke -> busybox
    adding symlink: /usr/bin/openvt -> busybox
    adding symlink: /usr/bin/partprobe -> busybox
    adding symlink: /usr/bin/paste -> busybox
    adding symlink: /usr/bin/pgrep -> busybox
    adding symlink: /usr/bin/pidof -> busybox
    adding symlink: /usr/bin/ping -> busybox
    adding symlink: /usr/bin/ping6 -> busybox
    adding symlink: /usr/bin/poweroff -> busybox
    adding symlink: /usr/bin/printf -> busybox
    adding symlink: /usr/bin/ps -> busybox
    adding symlink: /usr/bin/pwd -> busybox
    adding symlink: /usr/bin/readlink -> busybox
    adding symlink: /usr/bin/realpath -> busybox
    adding symlink: /usr/bin/reboot -> busybox
    adding symlink: /usr/bin/resume -> busybox
    adding symlink: /usr/bin/rm -> busybox
    adding symlink: /usr/bin/rmdir -> busybox
    adding symlink: /usr/bin/route -> busybox
    adding symlink: /usr/bin/run-init -> busybox
    adding symlink: /usr/bin/sed -> busybox
    adding symlink: /usr/bin/seedrng -> busybox
    adding symlink: /usr/bin/seq -> busybox
    adding symlink: /usr/bin/setfattr -> busybox
    adding symlink: /usr/bin/setfont -> busybox
    adding symlink: /usr/bin/sh -> busybox
    adding symlink: /usr/bin/sha1sum -> busybox
    adding symlink: /usr/bin/sha256sum -> busybox
    adding symlink: /usr/bin/sha512sum -> busybox
    adding symlink: /usr/bin/shuf -> busybox
    adding symlink: /usr/bin/sleep -> busybox
    adding symlink: /usr/bin/sort -> busybox
    adding symlink: /usr/bin/stat -> busybox
    adding symlink: /usr/bin/strings -> busybox
    adding symlink: /usr/bin/sync -> busybox
    adding symlink: /usr/bin/tac -> busybox
    adding symlink: /usr/bin/tail -> busybox
    adding symlink: /usr/bin/tar -> busybox
    adding symlink: /usr/bin/tcpsvd -> busybox
    adding symlink: /usr/bin/tee -> busybox
    adding symlink: /usr/bin/telnet -> busybox
    adding symlink: /usr/bin/test -> busybox
    adding symlink: /usr/bin/tftp -> busybox
    adding symlink: /usr/bin/touch -> busybox
    adding symlink: /usr/bin/tree -> busybox
    adding symlink: /usr/bin/true -> busybox
    adding symlink: /usr/bin/truncate -> busybox
    adding symlink: /usr/bin/ts -> busybox
    adding symlink: /usr/bin/tsort -> busybox
    adding symlink: /usr/bin/udhcpc -> busybox
    adding symlink: /usr/bin/udhcpc6 -> busybox
    adding symlink: /usr/bin/umount -> busybox
    adding symlink: /usr/bin/uname -> busybox
    adding symlink: /usr/bin/uniq -> busybox
    adding symlink: /usr/bin/unlink -> busybox
    adding symlink: /usr/bin/unshare -> busybox
    adding symlink: /usr/bin/unzip -> busybox
    adding symlink: /usr/bin/uptime -> busybox
    adding symlink: /usr/bin/vi -> busybox
    adding symlink: /usr/bin/wc -> busybox
    adding symlink: /usr/bin/wget -> busybox
    adding symlink: /usr/bin/which -> busybox
    adding symlink: /usr/bin/xxd -> busybox
    adding symlink: /usr/bin/xz -> busybox
    adding symlink: /usr/bin/yes -> busybox
    adding file: /bin/busybox
Segmentation fault         (core dumped) mkinitcpio -v
[motherfucker_big_scorpio@Nexus ~]$ 

What I do next?

Need I to reinstall Linux (like when Windows does unfunny business) or can I save my OS?

I don't know how or why but I can access my desktop environment Plasma X11 and initramfs does load (my luck in misfortune I suppose). Last time it was stuck with not having the /boot/vmlinuz-linux(-lts) files to boot up with.

But the system is still broken. Can't log in to Plasma Wayland and my audio devices were not detected.

Offline

#6 2026-04-04 20:33:33

dimich
Member
From: Kharkiv, Ukraine
Registered: 2009-11-03
Posts: 547

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Big Scorpio wrote:

Need I to reinstall Linux (like when Windows does unfunny business) or can I save my OS?

I'd recommend to investigate cause of the issue or at least fix it while it is more or less reproducible. Reinstallation may hide the issue but it may pop up later in any unexpected place.

Big Scorpio wrote:

But the system is still broken.

So does "native" boot with existing installed kernel and rootfs work now, without chroot from Arch ISO?

Big Scorpio wrote:

Can't log in to Plasma Wayland and my audio devices were not detected.

Are there the same segmentation faults and core dumps in journal?

Offline

#7 2026-04-05 07:23:14

-thc
Member
Registered: 2017-03-15
Posts: 1,115

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Can you retrace your steps since the troubles began? You last journal from your last topic seems O.K. It must have happened recently.

That ominous "sudo pacman -Syu" must have created a ton of messages? If so, what did you do?

Offline

#8 2026-04-05 14:49:35

Big Scorpio
Member
Registered: 2024-12-15
Posts: 90

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

dimich wrote:

So does "native" boot with existing installed kernel and rootfs work now, without chroot from Arch ISO?

Yes.
I remember now why. After i lost initramfs, I did arch-chroot into my system and found, that my /boot dir had no vmlinuz-linux(-lts) files, so i did some online searching and found, that somewhere else in the /etc dir i can copy it over to /boot and perform mkinitcpio -P. I did that when i was still chrooted into it and it ran through just fine.

That I think explains why the booting works now.

dimich wrote:

Are there the same segmentation faults and core dumps in journal?

See here

Apr 05 16:40:00 Nexus sudo[4029]: motherfucker_big_scorpio : TTY=pts/1 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/echo START
Apr 05 16:40:00 Nexus sudo[4029]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)
Apr 05 16:40:00 Nexus sudo[4029]: pam_unix(sudo:session): session closed for user root
Apr 05 16:40:06 Nexus sudo[4036]: motherfucker_big_scorpio : TTY=pts/1 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/mkinitcpio -P
Apr 05 16:40:06 Nexus sudo[4036]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)
Apr 05 16:40:06 Nexus systemd-coredump[4264]: Process 4050 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 05 16:40:06 Nexus systemd[1]: Started Process Core Dump (PID 4264/UID 0).
Apr 05 16:40:06 Nexus systemd-coredump[4265]: Resource limits disable core dumping for process 4050 (bash).
Apr 05 16:40:06 Nexus systemd-coredump[4265]: [?] Process 4050 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 05 16:40:06 Nexus systemd[1]: systemd-coredump@28-28719-4264_4265-0.service: Deactivated successfully.
Apr 05 16:40:06 Nexus systemd-coredump[4487]: Process 4271 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 05 16:40:06 Nexus systemd[1]: Started Process Core Dump (PID 4487/UID 0).
Apr 05 16:40:06 Nexus systemd-coredump[4488]: Resource limits disable core dumping for process 4271 (bash).
Apr 05 16:40:06 Nexus systemd-coredump[4488]: [?] Process 4271 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 05 16:40:06 Nexus systemd[1]: systemd-coredump@29-20532-4487_4488-0.service: Deactivated successfully.
Apr 05 16:40:06 Nexus systemd-coredump[4709]: Process 4493 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 05 16:40:06 Nexus systemd[1]: Started Process Core Dump (PID 4709/UID 0).
Apr 05 16:40:06 Nexus systemd-coredump[4710]: Resource limits disable core dumping for process 4493 (bash).
Apr 05 16:40:06 Nexus systemd-coredump[4710]: [?] Process 4493 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 05 16:40:06 Nexus systemd[1]: systemd-coredump@30-4129-4709_4710-0.service: Deactivated successfully.
Apr 05 16:40:07 Nexus systemd-coredump[4930]: Process 4715 (bash) of user 0 terminated abnormally with signal 11/SEGV, processing...
Apr 05 16:40:07 Nexus systemd[1]: Started Process Core Dump (PID 4930/UID 0).
Apr 05 16:40:07 Nexus systemd-coredump[4931]: Resource limits disable core dumping for process 4715 (bash).
Apr 05 16:40:07 Nexus systemd-coredump[4931]: [?] Process 4715 (bash) of user 0 terminated abnormally without generating a coredump.
Apr 05 16:40:07 Nexus systemd[1]: systemd-coredump@31-28720-4930_4931-0.service: Deactivated successfully.
Apr 05 16:40:07 Nexus sudo[4036]: pam_unix(sudo:session): session closed for user root
Apr 05 16:40:10 Nexus sudo[4938]: motherfucker_big_scorpio : TTY=pts/1 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/echo END
Apr 05 16:40:10 Nexus sudo[4938]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)
Apr 05 16:40:10 Nexus sudo[4938]: pam_unix(sudo:session): session closed for user root
Apr 05 16:40:16 Nexus sudo[4942]: motherfucker_big_scorpio : TTY=pts/1 ; PWD=/home/motherfucker_big_scorpio ; USER=root ; COMMAND=/usr/bin/journalctl -b
Apr 05 16:40:16 Nexus sudo[4942]: pam_unix(sudo:session): session opened for user root(uid=0) by motherfucker_big_scorpio(uid=1000)
-thc wrote:

Can you retrace your steps since the troubles began? You last journal from your last topic seems O.K. It must have happened recently.

That ominous "sudo pacman -Syu" must have created a ton of messages? If so, what did you do?

I don't know how to answer that helpfully (me helping you helping me). Imagine using your device like you do every day. And the next day these system malfunctions appear out of nowhere. No one else uses the device but you.

The first system malfunction I encountered was this one (in short, I can't log in to Plasma Wayland) https://bbs.archlinux.org/viewtopic.php?id=312946
And since it was the beginning of April, it was time for a system update, so i figure an update would fix it.
It made things worse.
I don't have messages from pacman -Syu saved unless they are automatically logged somewhere? It never occurred to me, that one should keep those.

How about I uninstall the core libs and reinstall those like a hard reset? May want to do it through arch-chroot for this one or something. I'm getting close to wanting to just burn the whole / filesystem partition (save for the /home and /boot) and start anew on it.

Offline

#9 2026-04-05 19:09:24

-thc
Member
Registered: 2017-03-15
Posts: 1,115

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

To summarize:

The journal from the 26th of March (https://0x0.st/PfPy.txt) contains no massive amount of coredumps.

You did nothing.

The system unexpectedly misbehaves (https://bbs.archlinux.org/viewtopic.php?id=312946). F*cktons of coredumps emerge.

You do a "sudo pacman -Syu" and things got worse.

Somehow the "/boot" directory contains no images.

To me that makes no sense at all. You can try seth's pacman command to reinstall glibc. I that doesn't help you should consider a new installation.

Offline

#10 2026-04-06 00:29:07

dimich
Member
From: Kharkiv, Ukraine
Registered: 2009-11-03
Posts: 547

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Big Scorpio wrote:
dimich wrote:

Are there the same segmentation faults and core dumps in journal?

See here

Sorry, I'm confused. There is journal.txt shared in OP. It contains a lot of systemd reports about core dumped services. There is cut of journal in the recent post which contains only bash segmentation faults.

Do all those services (udev-worker, kwin_wayland, kaccess etc) crash at boot as before? Or only mkinitcpio crashes now?
Is there core dump after running "mkinitcpio -v"? Can you show it's backtrace? Run

# mkinitcpio -v

then

# coredumpctl list -n 10

Offline

#11 2026-04-06 15:54:56

Big Scorpio
Member
Registered: 2024-12-15
Posts: 90

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

The summary is correct. Almost artificially odd, I know.

[motherfucker_big_scorpio@Nexus ~]$ 
[motherfucker_big_scorpio@Nexus ~]$ mkinitcpio -v
    located kernel image: '/lib/modules/6.18.21-1-lts/vmlinuz'
==> Starting dry run: '6.18.21-1-lts'
  -> Running build hook: [/usr/lib/initcpio/install/base]
    adding symlink: /usr/bin/[ -> busybox
    adding symlink: /usr/bin/arch -> busybox
    adding symlink: /usr/bin/ascii -> busybox
    adding symlink: /usr/bin/ash -> busybox
    adding symlink: /usr/bin/awk -> busybox
    adding symlink: /usr/bin/base32 -> busybox
    adding symlink: /usr/bin/base64 -> busybox
    adding symlink: /usr/bin/basename -> busybox
    adding symlink: /usr/bin/bc -> busybox
    adding symlink: /usr/bin/blkdiscard -> busybox
    adding symlink: /usr/bin/bzip2 -> busybox
    adding symlink: /usr/bin/cat -> busybox
    adding symlink: /usr/bin/chgrp -> busybox
    adding symlink: /usr/bin/chmod -> busybox
    adding symlink: /usr/bin/chown -> busybox
    adding symlink: /usr/bin/chroot -> busybox
    adding symlink: /usr/bin/clear -> busybox
    adding symlink: /usr/bin/cp -> busybox
    adding symlink: /usr/bin/cpio -> busybox
    adding symlink: /usr/bin/crc32 -> busybox
    adding symlink: /usr/bin/cttyhack -> busybox
    adding symlink: /usr/bin/cut -> busybox
    adding symlink: /usr/bin/dd -> busybox
    adding symlink: /usr/bin/df -> busybox
    adding symlink: /usr/bin/dirname -> busybox
    adding symlink: /usr/bin/dmesg -> busybox
    adding symlink: /usr/bin/du -> busybox
    adding symlink: /usr/bin/echo -> busybox
    adding symlink: /usr/bin/env -> busybox
    adding symlink: /usr/bin/expr -> busybox
    adding symlink: /usr/bin/fallocate -> busybox
    adding symlink: /usr/bin/false -> busybox
    adding symlink: /usr/bin/fatattr -> busybox
    adding symlink: /usr/bin/free -> busybox
    adding symlink: /usr/bin/fsfreeze -> busybox
    adding symlink: /usr/bin/fstrim -> busybox
    adding symlink: /usr/bin/fsync -> busybox
    adding symlink: /usr/bin/getopt -> busybox
    adding symlink: /usr/bin/grep -> busybox
    adding symlink: /usr/bin/gzip -> busybox
    adding symlink: /usr/bin/halt -> busybox
    adding symlink: /usr/bin/head -> busybox
    adding symlink: /usr/bin/hexdump -> busybox
    adding symlink: /usr/bin/hexedit -> busybox
    adding symlink: /usr/bin/i2ctransfer -> busybox
    adding symlink: /usr/bin/ifconfig -> busybox
    adding symlink: /usr/bin/init -> busybox
    adding symlink: /usr/bin/install -> busybox
    adding symlink: /usr/bin/ip -> busybox
    adding symlink: /usr/bin/ipaddr -> busybox
    adding symlink: /usr/bin/iplink -> busybox
    adding symlink: /usr/bin/ipneigh -> busybox
    adding symlink: /usr/bin/iproute -> busybox
    adding symlink: /usr/bin/iprule -> busybox
    adding symlink: /usr/bin/iptunnel -> busybox
    adding symlink: /usr/bin/kbd_mode -> busybox
    adding symlink: /usr/bin/kill -> busybox
    adding symlink: /usr/bin/killall -> busybox
    adding symlink: /usr/bin/less -> busybox
    adding symlink: /usr/bin/link -> busybox
    adding symlink: /usr/bin/ln -> busybox
    adding symlink: /usr/bin/loadfont -> busybox
    adding symlink: /usr/bin/loadkmap -> busybox
    adding symlink: /usr/bin/losetup -> busybox
    adding symlink: /usr/bin/ls -> busybox
    adding symlink: /usr/bin/lsscsi -> busybox
    adding symlink: /usr/bin/lzop -> busybox
    adding symlink: /usr/bin/md5sum -> busybox
    adding symlink: /usr/bin/mim -> busybox
    adding symlink: /usr/bin/mkdir -> busybox
    adding symlink: /usr/bin/mkfifo -> busybox
    adding symlink: /usr/bin/mknod -> busybox
    adding symlink: /usr/bin/mkpasswd -> busybox
    adding symlink: /usr/bin/mktemp -> busybox
    adding symlink: /usr/bin/mountpoint -> busybox
    adding symlink: /usr/bin/mv -> busybox
    adding symlink: /usr/bin/nc -> busybox
    adding symlink: /usr/bin/netstat -> busybox
    adding symlink: /usr/bin/nologin -> busybox
    adding symlink: /usr/bin/nproc -> busybox
    adding symlink: /usr/bin/nsenter -> busybox
    adding symlink: /usr/bin/nslookup -> busybox
    adding symlink: /usr/bin/nuke -> busybox
    adding symlink: /usr/bin/openvt -> busybox
    adding symlink: /usr/bin/partprobe -> busybox
    adding symlink: /usr/bin/paste -> busybox
    adding symlink: /usr/bin/pgrep -> busybox
    adding symlink: /usr/bin/pidof -> busybox
    adding symlink: /usr/bin/ping -> busybox
    adding symlink: /usr/bin/ping6 -> busybox
    adding symlink: /usr/bin/poweroff -> busybox
    adding symlink: /usr/bin/printf -> busybox
    adding symlink: /usr/bin/ps -> busybox
    adding symlink: /usr/bin/pwd -> busybox
    adding symlink: /usr/bin/readlink -> busybox
    adding symlink: /usr/bin/realpath -> busybox
    adding symlink: /usr/bin/reboot -> busybox
    adding symlink: /usr/bin/resume -> busybox
    adding symlink: /usr/bin/rm -> busybox
    adding symlink: /usr/bin/rmdir -> busybox
    adding symlink: /usr/bin/route -> busybox
    adding symlink: /usr/bin/run-init -> busybox
    adding symlink: /usr/bin/sed -> busybox
    adding symlink: /usr/bin/seedrng -> busybox
    adding symlink: /usr/bin/seq -> busybox
    adding symlink: /usr/bin/setfattr -> busybox
    adding symlink: /usr/bin/setfont -> busybox
    adding symlink: /usr/bin/sh -> busybox
    adding symlink: /usr/bin/sha1sum -> busybox
    adding symlink: /usr/bin/sha256sum -> busybox
    adding symlink: /usr/bin/sha512sum -> busybox
    adding symlink: /usr/bin/shuf -> busybox
    adding symlink: /usr/bin/sleep -> busybox
    adding symlink: /usr/bin/sort -> busybox
    adding symlink: /usr/bin/stat -> busybox
    adding symlink: /usr/bin/strings -> busybox
    adding symlink: /usr/bin/sync -> busybox
    adding symlink: /usr/bin/tac -> busybox
    adding symlink: /usr/bin/tail -> busybox
    adding symlink: /usr/bin/tar -> busybox
    adding symlink: /usr/bin/tcpsvd -> busybox
    adding symlink: /usr/bin/tee -> busybox
    adding symlink: /usr/bin/telnet -> busybox
    adding symlink: /usr/bin/test -> busybox
    adding symlink: /usr/bin/tftp -> busybox
    adding symlink: /usr/bin/touch -> busybox
    adding symlink: /usr/bin/tree -> busybox
    adding symlink: /usr/bin/true -> busybox
    adding symlink: /usr/bin/truncate -> busybox
    adding symlink: /usr/bin/ts -> busybox
    adding symlink: /usr/bin/tsort -> busybox
    adding symlink: /usr/bin/udhcpc -> busybox
    adding symlink: /usr/bin/udhcpc6 -> busybox
    adding symlink: /usr/bin/umount -> busybox
    adding symlink: /usr/bin/uname -> busybox
    adding symlink: /usr/bin/uniq -> busybox
    adding symlink: /usr/bin/unlink -> busybox
    adding symlink: /usr/bin/unshare -> busybox
    adding symlink: /usr/bin/unzip -> busybox
    adding symlink: /usr/bin/uptime -> busybox
    adding symlink: /usr/bin/vi -> busybox
    adding symlink: /usr/bin/wc -> busybox
    adding symlink: /usr/bin/wget -> busybox
    adding symlink: /usr/bin/which -> busybox
    adding symlink: /usr/bin/xxd -> busybox
    adding symlink: /usr/bin/xz -> busybox
    adding symlink: /usr/bin/yes -> busybox
    adding file: /bin/busybox
Segmentation fault         (core dumped) mkinitcpio -v
[motherfucker_big_scorpio@Nexus ~]$ coredumpctl list -n 10
TIME                           PID  UID  GID SIG     COREFILE     EXE                            SIZE
Sat 2026-03-28 04:37:27 CET  20148 1000 1000 SIGTRAP none         /usr/lib/electron36/electron      -
Mon 2026-03-30 22:43:47 CEST 17627 1000 1000 SIGTRAP none         /usr/lib/electron36/electron      -
Tue 2026-03-31 23:58:41 CEST 14083 1000 1000 SIGTRAP none         /usr/lib/electron36/electron      -
Wed 2026-04-01 14:24:51 CEST  5290 1000 1000 SIGTRAP none         /usr/lib/electron36/electron      -
Thu 2026-04-02 20:28:04 CEST 17145 1000 1000 SIGTRAP none         /usr/lib/electron36/electron      -
Fri 2026-04-03 17:30:27 CEST   555    0    0 SIGSEGV inaccessible /usr/bin/udevadm                  -
Fri 2026-04-03 17:30:29 CEST   575    0    0 SIGSEGV inaccessible /usr/bin/udevadm                  -
Fri 2026-04-03 17:30:29 CEST   564    0    0 SIGSEGV inaccessible /usr/bin/udevadm                  -
Fri 2026-04-03 17:30:38 CEST   974 1000 1000 SIGSEGV present      /usr/lib/xdg-desktop-portal  150.9K
Fri 2026-04-03 17:30:39 CEST   964 1000 1000 SIGSEGV inaccessible /usr/bin/kwin_wayland             -
[motherfucker_big_scorpio@Nexus ~]$ 

Here is also a fresh journalctl -> https://termbin.com/jxgll

Many things crash on launch. Attempted to open qview Image viewer and it crashed too. it's in journalctl at the bottom, however it seems to show no useful data. They point to the same libc thing.

---

Novice Linux question but if i were to reinstall the Linux OS, what is the right way to go about to "surgically" reinstall just the Linux OS and leave everything else as-is (home, boot, users, fstab and partitions)? Is it as simple as overwriting the OS files?
If it comes to it, I'd like to distro-hop towards CachyOS, which is still Arch but it saves me a lot of work to do the setups I need for my use cases.

Offline

#12 2026-04-06 19:04:42

dimich
Member
From: Kharkiv, Ukraine
Registered: 2009-11-03
Posts: 547

Re: mkinitcpio Seg fault MKINITCPIO_PROCESS_PRESET

Big Scorpio wrote:

what is the right way to go about to "surgically" reinstall just the Linux OS and leave everything else as-is

I would try the following: boot with Arch ISO, check root and boot filesystems with fsck, mount root to /mnt, boot to /mnt/boot etc. Update the system:

# pacman -Syu --sysroot /mnt

Maybe forcibly re-install packages with

# pacman -Qqn --sysroot /mnt | pacman -S --sysroot /mnt -

Offline

Board footer

Powered by FluxBB