EthanW
1
刚才偶然打开 crashes processes viewer 发现一堆true进程错误啊
PID: 5936 (true)
UID: 1000 (ethan)
GID: 1001 (ethan)
Signal: 12 (SYS)
Timestamp: Thu 2025-12-18 16:39:37 CST (4min 15s ago)
Command Line: /usr/bin/true
Executable: /usr/bin/true
Control Group: /user.slice/user-1000.slice/user@1000.service/app.slice/app-firefox-1157c08f21ce4c70ab253dcf9e5c005a.scope
Unit: user@1000.service
User Unit: app-firefox-1157c08f21ce4c70ab253dcf9e5c005a.scope
Slice: user-1000.slice
Owner UID: 1000 (ethan)
Boot ID: f216ef9899f24062aad4e6dff3a10611
Machine ID: dfd2c6b3eef9478e8e3740ebdb992f09
Hostname: aosc-3a4000itx
Storage: /var/lib/systemd/coredump/core.true.1000.f216ef9899f24062aad4e6dff3a10611.5936.1766047177000000.zst (present)
Size on Disk: 17.3K
Message: Process 5936 (true) of user 1000 dumped core.
我们暂未找到详细的原因,但根据图中提到的 firefox 判断,有可能是沙盒基于 SIGSYS 的工作机制在 mips 上实现不完整导致。
白铭骢
4
您好,该问题我们已归因并推送了 Core 13.0.1 更新作为紧急修复
1-2 小时后更新系统即可,感谢理解
白铭骢
10
麻烦再更新一下,您可能没收到 Core 13.0.1
EthanW
11
那天我记得同时收到了core 13.0.0 和 13.0.1.
不过刚才再更新收到了core 13.0.2 和 13.0.1.
更新好了不过好像问题又回去了…
PID: 1629 (true)
UID: 1000 (ethan)
GID: 1001 (ethan)
Signal: 12 (SYS)
Timestamp: Mon 2025-12-22 12:21:01 CST (12s ago)
Command Line: /usr/bin/true
Executable: /usr/bin/true
Control Group: /user.slice/user-1000.slice/user@1000.service/app.slice/app-firefox-8c7b8cc82b0448008f5c2aa3d8ae7386.scope
Unit: user@1000.service
User Unit: app-firefox-8c7b8cc82b0448008f5c2aa3d8ae7386.scope
Slice: user-1000.slice
Owner UID: 1000 (ethan)
Boot ID: ebe2ce8e54ef45109c12f7e5a56b2ea1
Machine ID: dfd2c6b3eef9478e8e3740ebdb992f09
Hostname: aosc-3a4000itx
Storage: /var/lib/systemd/coredump/core.true.1000.ebe2ce8e54ef45109c12f7e5a56b2ea1.1629.1766377261000000.zst (present)
Size on Disk: 17.2K
Message: Process 1629 (true) of user 1000 dumped core.
EthanW
13
plasma-powerdevil 这个错误好像在最近Oma更新过后严重造成系统lag, 只能 systemctl mask 了先
求助ai,增加该服务启动超时时间,就能正常启动了( 系统重启进桌面黑屏了,显示无输出)
又禁用了亮度控制功能。
EthanW
14
true crash 这问题ai是这么看的 
问题根源分析
这是一个严重的系统级 bug!问题出在动态链接器(ld.so)加载共享库时。
关键发现
- 崩溃位置:动态链接器在加载
libc.so.6 时
- 触发函数:
elf_machine_reject_phdr_p (MIPS 架构特定的 ELF 验证)
- 失败系统调用:
__lseek64(fd=6, offset=832, whence=0)
- glibc 版本:2.42(相对较新)
问题原因
在 MIPS64 架构上,elf_machine_reject_phdr_p 函数尝试使用 lseek64 系统调用来验证 ELF 文件,但:
- 该系统调用被内核或 seccomp 策略拒绝
- 可能是 glibc 2.42 在 MIPS64 上的回归 bug