Laptop freezing

i have no idea whats actually causing it … there is nothing in the logs after the freezes happen …

i have this exact problem, installing a newer kernel fixed it for a few days but then it happened again System breaks then shuts down

this is what happens when people prematurely mark the issue as solved without testing …
your issue were likely related to some graphics driver issue according to logs …
also you have installed the 5.18 kernel, which is soon going to be dropped, so install the 5.19.1, reboot, select it and then uninstall the 5.18
if the freezes happens again create a new topic …

Check the driver parameters:

modinfo i915 | egrep "^parm:"

and disable some powersaving features. Search the web/forum how to do this.

Using swap is good, but luks encryption is a bad idea, since your cpu as also no aes support:

So think yourself: performence or security? You cannot get both without neglecting something.

and disable some powersaving features. Search the web/forum how to do this.

except i dont really know which ones. internet search yields some nonexistent params

Using swap is good, but luks encryption is a bad idea, since your cpu as also no aes support:

the inxi output is from a previous installation. luks is not enabled in the current one

on arch wiki there are some parameters that can be tried to solve freezing…
edit grub conf:
sudo nano /etc/default/grub
and edit this line: GRUB_CMDLINE_LINUX_DEFAULT - inside the quotes add these parameters:
mitigations=off intel_idle.max_cstate=1
dont remove any parameters from there, add them to existing one;
save it with ctrl+x, update grub:
sudo update-grub
reboot and test

if it doesnt work add another parameter, so your parameters will be:
mitigations=off intel_idle.max_cstate=1 i915.enable_dc=0
save it, update grub, reboot, test
if it still freezes add this parameter, so that your parameters look like this:

mitigations=off intel_idle.max_cstate=1 i915.enable_dc=0 ahci.mobile_lpm_policy=1

save it, update grub, reboot, and test

mitigations=off intel_idle.max_cstate=1

ok so adding these two params seems? to fix the issue, however i was testing for a short time so id refrain from closing the thread right now.
i also really hope disabling all mitigations isnt necessary
ill post further testing results later today

and now, probably unrelated, im getting some video artifacts. 1-2 / 2min, kinda annoying, bottom part of the screen glitches

you can reenable the mitigations if you want …
and those artifacts/glitches were not present before adding the parameter?

you can reenable the mitigations if you want …

actually, i dont think i will, too big performance hit

and those artifacts/glitches were not present before adding the parameter?

turns out they were

i have them disabled too …
try adding this parameter to the existing ones:
i915.enable_psr=0
save it, update grub, reboot and see if you have those glitches …

ive fixed the artifacts by enabling compositor (was disabled)
also, the freezing seems to be gone for good, thanks to you and others for willing to help!